fromString static method
Implementation
static StatusResponse fromString(String value) {
return StatusResponse.values
.firstWhere((type) => type.toString().split(".").last == value);
}
static StatusResponse fromString(String value) {
return StatusResponse.values
.firstWhere((type) => type.toString().split(".").last == value);
}