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