getMaxMtuSize static method

Future getMaxMtuSize(
  1. String address
)

To get max MtuSize

Implementation

static Future getMaxMtuSize(String address) async {
  var size = await _channel.invokeMethod("getMaxMtuSize", args: {
    "device": WinHelper.getDeviceFromAddress(address),
  });
  return size;
}