isSuccess method
Implementation
bool isSuccess() {
if (this == null) {
return false;
}
return this!.state == WifiConnectionState.Connected;
}
bool isSuccess() {
if (this == null) {
return false;
}
return this!.state == WifiConnectionState.Connected;
}