setSharedKeysDataMapping method

Future<void> setSharedKeysDataMapping(
  1. SharedKeysDataMapping sharedKeysDataMapping
)

Implementation

Future<void> setSharedKeysDataMapping(
  SharedKeysDataMapping sharedKeysDataMapping,
) async {
  return await _channel.invokeMethod<void>(
    'setSharedKeysDataMapping',
    sharedKeysDataMapping.toJson(),
  );
}