fromValue static method
Implementation
static ConnectionStatus fromValue(int value) {
return ConnectionStatus.values
.firstWhere((element) => element.value == value);
}
static ConnectionStatus fromValue(int value) {
return ConnectionStatus.values
.firstWhere((element) => element.value == value);
}