mogol/flutter_secure_storage

Recording with encrypted data

mat20s23 opened this issue · 1 comments

Following the code below, the plugin automatically records encrypted data on Android and iOS. Or do I need to pass some options parameter?

import 'package:flutter_secure_storage/flutter_secure_storage.dart';
final storage = FlutterSecureStorage();
await storage.write(key: 'username', value: 'example@domain.com');

Hi, this will indeed work out of the box.