checkConnection method

Future<bool> checkConnection(
  1. String address
)

Implementation

Future<bool> checkConnection(String address) async {
  return await _methodChannel
      .invokeMethod('check_connection', {'address': address});
}