isConnectionFast method

Future<bool> isConnectionFast()

Implementation

Future<bool> isConnectionFast() async {
  final int checkConnection = await _channel.invokeMethod('isConnectionFast');
  return checkConnection == 1 ? true : false;
}