copyWith method
Implementation
PaymentSettings copyWith(
{String? successUrl,
String? failUrl,
String? recurFreq,
String? recurExp,
String? terminalId}) {
return PaymentSettings(
successUrl: successUrl ?? this.successUrl,
failUrl: failUrl ?? this.failUrl,
recurFreq: recurFreq ?? this.recurFreq,
recurExp: recurExp ?? this.recurExp,
terminalId: terminalId ?? this.terminalId,
);
}