copyWith method

ClientContactsGet$Response copyWith({
  1. int? count,
  2. String? next,
  3. String? previous,
  4. List<ClientContact>? results,
})

Implementation

ClientContactsGet$Response copyWith(
    {int? count,
    String? next,
    String? previous,
    List<ClientContact>? results}) {
  return ClientContactsGet$Response(
      count: count ?? this.count,
      next: next ?? this.next,
      previous: previous ?? this.previous,
      results: results ?? this.results);
}