reset method

Future<bool> reset()

Implementation

Future<bool> reset() async {
  try {
    await disconnect();
    await connect(throwError: true);
    return _isConnect;
  } catch (e) {
    rethrow;
  }
}