ChatwootContact constructor

ChatwootContact({
  1. required int id,
  2. required String? contactIdentifier,
  3. required String? pubsubToken,
  4. required String name,
  5. required String email,
})

Implementation

ChatwootContact({
  required this.id,
  required this.contactIdentifier,
  required this.pubsubToken,
  required this.name,
  required this.email,
});