getContacts method

Future<List<Contact>> getContacts({
  1. DateTime? fromDate,
  2. int? limit,
  3. bool orderByDesc = true,
})

/ 1.

Implementation

Future<List<Contact>> getContacts({
  DateTime? fromDate,
  int? limit,
  bool orderByDesc = true,
}) {
  throw UnimplementedError('getContacts() has not been implemented.');
}