PackInviteResponse constructor

const PackInviteResponse({
  1. required String code,
  2. required PackInviteResponseTypeType type,
  3. required PackInviteResponsePack pack,
  4. required bool temporary,
  5. UserPartialResponse? inviter,
  6. DateTime? expiresAt,
})

Implementation

const PackInviteResponse({
  required this.code,
  required this.type,
  required this.pack,
  required this.temporary,
  this.inviter,
  this.expiresAt,
});