createKeys method

  1. @override
Future<String?> createKeys()
override

Implementation

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