StickerAttachment constructor

const StickerAttachment({
  1. required String url,
  2. required String code,
  3. required int width,
  4. required int height,
})

Implementation

const StickerAttachment({
  required this.url,
  required this.code,
  required this.width,
  required this.height,
}) : super(type: 'sticker');