copyWith method
Создает экземпляр с заданными параметрами
Implementation
@override
GetBindingsByCardOrIdRequest copyWith({
String? pan,
String? bindingId,
bool? showExpired,
}) {
return GetBindingsByCardOrIdRequest(
pan: pan ?? this.pan,
bindingId: bindingId ?? this.bindingId,
showExpired: showExpired ?? this.showExpired,
);
}