PaymentMethodCard constructor

PaymentMethodCard({
  1. String? brand,
  2. String? lastFourDigits,
})

Implementation

factory PaymentMethodCard({
  $core.String? brand,
  $core.String? lastFourDigits,
}) {
  final $result = create();
  if (brand != null) {
    $result.brand = brand;
  }
  if (lastFourDigits != null) {
    $result.lastFourDigits = lastFourDigits;
  }
  return $result;
}