InviteParams constructor

InviteParams({
  1. String sponsor = '',
  2. String? callType,
  3. bool isFromGroup = false,
  4. String groupID = '',
  5. required List<String> userIDList,
})

Implementation

InviteParams(
    {this.sponsor = '',
    this.callType,
    this.isFromGroup = false,
    this.groupID = '',
    required this.userIDList});