fromValue static method

CourierTrackingEvent fromValue(
  1. String value
)

Implementation

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