fromValue static method
Implementation
static TronResponseCode fromValue(String value) {
return values.firstWhere(
(e) => e.value == value,
orElse: () => throw Exception("Invalid TronResponseCode name: $value"),
);
}
static TronResponseCode fromValue(String value) {
return values.firstWhere(
(e) => e.value == value,
orElse: () => throw Exception("Invalid TronResponseCode name: $value"),
);
}