copyWith method

  1. @override
GetBindingsRequest copyWith({
  1. String? clientId,
  2. String? bindingId,
  3. bool? showExpired,
  4. BindingType? bindingType,
  5. 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,
  );
}