copyWith method

SearchContacts copyWith({
  1. String? query,
  2. int? limit,
})

Implementation

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