copyWith method
Implementation
SearchContacts copyWith({String? query, int? limit}) =>
SearchContacts(query: query ?? this.query, limit: limit ?? this.limit);
SearchContacts copyWith({String? query, int? limit}) =>
SearchContacts(query: query ?? this.query, limit: limit ?? this.limit);