createKeys method
Implementation
@override
Future<String?> createKeys(
AndroidConfig androidConfig, IosConfig iosConfig) async {
try {
if (Platform.isAndroid) {
return await methodChannel.invokeMethod<String>(
'createKeys', androidConfig.useDeviceCredentials);
} else {
return await methodChannel.invokeMethod<String>(
'createKeys', iosConfig.useDeviceCredentials);
}
} on PlatformException {
rethrow;
}
}