setWrapper static method
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);
}