createKeys method
Implementation
@override
Future<String?> createKeys() async {
try {
final response = await methodChannel.invokeMethod<String>('createKeys');
return response;
} on PlatformException catch (e) {
return e.message;
}
}