reconnect method

Future<void> reconnect()

reconnect reconnect the multiclient

Implementation

Future<void> reconnect() async {
  if (!(this.address.isNotEmpty == true)) {
    return;
  }
  await _methodChannel.invokeMethod('reconnect', {'_id': this.address});
}