Emoji constructor

Emoji({
  1. required Snowflake id,
  2. required String? name,
  3. List<Role>? roles,
  4. User? user,
  5. bool? requireColons,
  6. bool? managed,
  7. bool? animated,
  8. bool? available,
})

Implementation

Emoji(
    {required this.id,
    required this.name,
    this.roles,
    this.user,
    this.requireColons,
    this.managed,
    this.animated,
    this.available});