fromValue static method

TronResponseCode fromValue(
  1. String value
)

Implementation

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