copyWith method
AddCardRequest
copyWith({
- String? customerKey,
- CheckType? checkType,
- String? description,
- String? payForm,
- String? ip,
- String? signToken,
override
Создает экземпляр с заданными параметрами
Implementation
@override
AddCardRequest copyWith({
String? customerKey,
CheckType? checkType,
String? description,
String? payForm,
String? ip,
String? signToken,
}) {
return AddCardRequest(
customerKey: customerKey ?? this.customerKey,
checkType: checkType ?? this.checkType,
description: description ?? this.description,
payForm: payForm ?? this.payForm,
ip: ip ?? this.ip,
signToken: signToken ?? this.signToken,
);
}