createKeys method

Future<Map<String, dynamic>?> createKeys(
  1. AndroidConfig androidConfig,
  2. IosConfig iosConfig, {
  3. required KeyFormat keyFormat,
})

Creates a key pair using the supplied platform-specific configuration.

Implementation

Future<Map<String, dynamic>?> createKeys(
  AndroidConfig androidConfig,
  IosConfig iosConfig, {
  required KeyFormat keyFormat,
}) {
  throw UnimplementedError(
    'createKeys(AndroidConfig androidConfig, IosConfig iosConfig, {required KeyFormat keyFormat, required int keySize}) has not been implemented.',
  );
}