fromRawValue static method

ApplePayAvailabilityState fromRawValue(
  1. String value
)

Implementation

static ApplePayAvailabilityState fromRawValue(String value) {
  return ApplePayAvailabilityState.values.firstWhere(
    (e) => e.rawValue == value,
    orElse: () =>
        throw ArgumentError('Unknown ApplePayAvailabilityState: $value'),
  );
}