InviteUser constructor

InviteUser({
  1. List<String> to = const [],
  2. required String groupId,
  3. List<String> cc = const [],
  4. List<String> bcc = const [],
  5. String? role,
  6. String? name,
  7. String? surname,
  8. String? username,
  9. String? email,
})

Returns a new InviteUser instance.

Implementation

InviteUser({
  this.to = const [],
  required this.groupId,
  this.cc = const [],
  this.bcc = const [],
  this.role,
  this.name,
  this.surname,
  this.username,
  this.email,
});