SearchContacts constructor

const SearchContacts({
  1. required String query,
  2. required int limit,
})

Searches for the specified query in the first names, last names and usernames of the known user contacts

Implementation

const SearchContacts({
  required this.query,
  required this.limit,
});