ListUserGuildsRequest constructor

const ListUserGuildsRequest({
  1. required SnowflakeType userId,
  2. SnowflakeType? before,
  3. SnowflakeType? after,
  4. int? limit,
  5. bool? withCounts,
})

Implementation

const ListUserGuildsRequest({
  required this.userId,
  this.before,
  this.after,
  this.limit,
  this.withCounts,
});