InviteBuilder constructor

InviteBuilder(
  1. {Duration? maxAge = sentinelDuration,
  2. int? maxUses,
  3. bool? isTemporary,
  4. bool? isUnique,
  5. TargetType? targetType,
  6. Snowflake? targetUserId,
  7. Snowflake? targetApplicationId}
)

Implementation

InviteBuilder({
  this.maxAge = sentinelDuration,
  this.maxUses,
  this.isTemporary,
  this.isUnique,
  this.targetType,
  this.targetUserId,
  this.targetApplicationId,
});