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