1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-01-30 21:53:00 +00:00
comunicmobile/lib/models/new_emoji.dart

18 lines
357 B
Dart
Raw Normal View History

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