getSharedKeysDataMapping method

Future<SharedKeysDataMapping> getSharedKeysDataMapping()

Implementation

Future<SharedKeysDataMapping> getSharedKeysDataMapping() async {
  final String? response = await _channel.invokeMethod<String>(
    'getSharedKeysDataMapping',
  );
  return SharedKeysDataMapping.fromJson(response!);
}