fromValue static method
Implementation
static CourierTrackingEvent fromValue(String value) {
return CourierTrackingEvent.values.firstWhere((e) => e.value == value,
orElse: () => throw ArgumentError('Invalid value: $value'));
}
static CourierTrackingEvent fromValue(String value) {
return CourierTrackingEvent.values.firstWhere((e) => e.value == value,
orElse: () => throw ArgumentError('Invalid value: $value'));
}