copyWith method
Implementation
PaymentMethodData copyWith({
String? token,
String? displayNumber,
String? brand,
}) {
return PaymentMethodData(
token: token ?? this.token,
displayNumber: displayNumber ?? this.displayNumber,
brand: brand ?? this.brand,
);
}