copyWith method
Implementation
WebApiModulesPluginsCreditCardCreditCardPluginBinResponse copyWith({
bool? success,
enums.WebApiModulesPluginsCreditCardCreditCardPluginBinResponseStatusCodes?
status,
String? statusText,
String? paymentTypeId,
String? paymentType,
String? cardType,
String? cardUseType,
String? cardUseString,
}) {
return WebApiModulesPluginsCreditCardCreditCardPluginBinResponse(
success: success ?? this.success,
status: status ?? this.status,
statusText: statusText ?? this.statusText,
paymentTypeId: paymentTypeId ?? this.paymentTypeId,
paymentType: paymentType ?? this.paymentType,
cardType: cardType ?? this.cardType,
cardUseType: cardUseType ?? this.cardUseType,
cardUseString: cardUseString ?? this.cardUseString,
);
}