fromValue static method

TransactionPeriod fromValue(
  1. String value
)

Implementation

static TransactionPeriod fromValue(String value) {
  return TransactionPeriod.values.firstWhere(
    (period) => period.value == value,
    orElse: () =>
        throw ArgumentError('No enum value with that value: $value'),
  );
}