Stickers constructor

const Stickers({
  1. required List<Sticker> stickers,
  2. dynamic extra,
  3. int? clientId,
})

Represents a list of stickers

Implementation

const Stickers({
  required this.stickers,
  this.extra,
  this.clientId,
});