writeToSecureStorage method Null safety
- _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());
}