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