isSuccess method

bool isSuccess()

Implementation

bool isSuccess() {
  if (this == null) {
    return false;
  }

  return this!.state == WifiConnectionState.Connected;
}