addSecureData method
Implementation
@override
Future<bool> addSecureData(String key, String value,
{String? application}) async {
final result = await methodChannel.invokeMethod<String>('addSecureData',
{'application': application, 'key': key, 'value': value});
return result == success;
}