stopHotspot static method

Future<bool> stopHotspot()

Implementation

static Future<bool> stopHotspot() async {
  try {
    final bool result = await _channel.invokeMethod('stopHotspot');
    return result;
  } on PlatformException {
    return false;
  }
}