parse static method
Implementation
static PaymentMethodDetails parse(Map<String,dynamic> object){
return PaymentMethodDetails(
card: object["card"],
country: object["country"],
exp_month: object["exp_month"],
exp_year: object["exp_year"],
fingerprint: object["fingerprint"],
funding: object["funding"],
installments: object["installments"],
last4: object["last4"],
mandate: object["mandate"],
moto: object["moto"],
network: object["network"],
three_d_secure: object["three_d_secure"],
wallet: object["wallet"],
type: object["type"],
);
}