copyWith method

  1. @override
RemoveCustomerRequest copyWith({
  1. String? customerKey,
  2. String? ip,
  3. String? signToken,
})
override

Создает экземпляр с заданными параметрами

Implementation

@override
RemoveCustomerRequest copyWith({
  String? customerKey,
  String? ip,
  String? signToken,
}) {
  return RemoveCustomerRequest(
    customerKey: customerKey ?? this.customerKey,
    ip: ip ?? this.ip,
    signToken: signToken ?? this.signToken,
  );
}