FFBraintreePaymentConfig constructor
FFBraintreePaymentConfig({
- FFBraintreePaymentConfig_BraintreePaymentType? paymentType,
- FFDropInOptions? dropInOptions,
Implementation
factory FFBraintreePaymentConfig({
FFBraintreePaymentConfig_BraintreePaymentType? paymentType,
FFDropInOptions? dropInOptions,
}) {
final result = create();
if (paymentType != null) result.paymentType = paymentType;
if (dropInOptions != null) result.dropInOptions = dropInOptions;
return result;
}