build method

Implementation

PaymentMethodCard build() {
  return PaymentMethodCard(
    brand: _brand,
    last4: _last4,
    expMonth: _expMonth,
    expYear: _expYear,
    funding: _funding,
    country: _country,
  );
}