FFBraintreePaymentConfig constructor

FFBraintreePaymentConfig({
  1. FFBraintreePaymentConfig_BraintreePaymentType? paymentType,
  2. 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;
}