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

18 lines
357 B
Dart
Raw Normal View History

2020-04-29 11:42:01 +00:00
import 'package:flutter/material.dart';
2021-02-07 16:09:08 +00:00
import 'package:image_picker/image_picker.dart';
2020-04-29 11:42:01 +00:00
/// New emoji information
///
/// @author Pierre HUBERT
class NewEmoji {
final String shortcut;
2021-02-07 16:09:08 +00:00
final PickedFile image;
2020-04-29 11:42:01 +00:00
const NewEmoji({
@required this.shortcut,
@required this.image,
}) : assert(shortcut != null),
assert(image != null);
}