mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
17 lines
292 B
Dart
17 lines
292 B
Dart
import 'api_request.dart';
|
|
|
|
/// New emoji information
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
class NewEmoji {
|
|
final String shortcut;
|
|
final BytesFile image;
|
|
|
|
const NewEmoji({
|
|
required this.shortcut,
|
|
required this.image,
|
|
}) : assert(shortcut != null),
|
|
assert(image != null);
|
|
}
|