fromRawValue static method

ApplePaySetupBehavior fromRawValue(
  1. String value
)

Implementation

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