add sticker and emote support
This commit is contained in:
parent
3e82faeb86
commit
e7890cfe4f
6 changed files with 97 additions and 6 deletions
11
lib/models/image_data.dart
Normal file
11
lib/models/image_data.dart
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue