FFDropInOptions constructor

FFDropInOptions({
  1. bool? card,
  2. bool? paypal,
  3. bool? googlePay,
  4. bool? applePay,
})

Implementation

factory FFDropInOptions({
  $core.bool? card,
  $core.bool? paypal,
  $core.bool? googlePay,
  $core.bool? applePay,
}) {
  final result = create();
  if (card != null) result.card = card;
  if (paypal != null) result.paypal = paypal;
  if (googlePay != null) result.googlePay = googlePay;
  if (applePay != null) result.applePay = applePay;
  return result;
}