setWrapper static method

Future<void> setWrapper({
  1. required String type,
  2. required String version,
})

Implementation

static Future<void> setWrapper({
  required String type,
  required String version,
}) async {
  final result = await _channel.invokeMethod('setWrapper', {
    'type': type,
    'version': version,
  });

  ExceptionHandler.checkException(result);
}