fromValue static method

TronContractResult fromValue(
  1. String value
)

Implementation

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