add sticker and emote support

This commit is contained in:
Henry Hiles 2025-12-04 14:56:33 -05:00
commit e7890cfe4f
No known key found for this signature in database
6 changed files with 97 additions and 6 deletions

View file

@ -0,0 +1,11 @@
import "package:freezed_annotation/freezed_annotation.dart";
part "image_data.freezed.dart";
@freezed
abstract class ImageData with _$ImageData {
const factory ImageData({
required String uri,
required int? height,
required int? width,
}) = _ImageData;
}