ImportedContacts constructor

const ImportedContacts({
  1. required List<int> userIds,
  2. required List<int> importerCount,
  3. dynamic extra,
  4. int? clientId,
})

Represents the result of an importContacts request

Implementation

const ImportedContacts({
  required this.userIds,
  required this.importerCount,
  this.extra,
  this.clientId,
});