1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/models/new_emoji.dart

17 lines
292 B
Dart
Raw Normal View History

2021-03-13 18:03:20 +01:00
import 'api_request.dart';
2020-04-29 13:42:01 +02:00
/// New emoji information
///
/// @author Pierre HUBERT
class NewEmoji {
final String shortcut;
2021-03-13 18:03:20 +01:00
final BytesFile image;
2020-04-29 13:42:01 +02:00
const NewEmoji({
required this.shortcut,
required this.image,
2020-04-29 13:42:01 +02:00
}) : assert(shortcut != null),
assert(image != null);
}