fromString static method
Parse from string.
Implementation
static PeriodDirection fromString(String value) {
return PeriodDirection.values.firstWhere(
(e) => e.name == value.toLowerCase(),
orElse: () => PeriodDirection.past,
);
}
Parse from string.
static PeriodDirection fromString(String value) {
return PeriodDirection.values.firstWhere(
(e) => e.name == value.toLowerCase(),
orElse: () => PeriodDirection.past,
);
}