copyWith method
Implementation
PaymentTokenResponse copyWith({
String? id,
String? method,
ExtraInfo? extraInfo,
}) {
return PaymentTokenResponse(
id: id ?? this.id,
method: method ?? this.method,
extraInfo: extraInfo ?? this.extraInfo,
);
}