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