mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
19 lines
335 B
Dart
19 lines
335 B
Dart
import 'package:flutter/material.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);
|
|
}
|