writeToSecureStorage method Null safety

Future<void> writeToSecureStorage(
  1. _SecItem secitem
)

Write Element to the Storage

Implementation

Future<void> writeToSecureStorage(_SecItem secitem) async {
  await _storage.write(
      key: secitem.key,
      value: secitem.value,
      iOptions: _getIOSOptions(),
      aOptions: _getAndroidOptions());
}