1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/models/new_emoji.dart

19 lines
335 B
Dart
Raw Normal View History

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