1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can upload new custom emojies

This commit is contained in:
2020-04-29 13:42:01 +02:00
parent e6df696077
commit 225df61aa0
5 changed files with 162 additions and 1 deletions

18
lib/models/new_emoji.dart Normal file
View File

@ -0,0 +1,18 @@
import 'dart:io';
import 'package:flutter/material.dart';
/// New emoji information
///
/// @author Pierre HUBERT
class NewEmoji {
final String shortcut;
final File image;
const NewEmoji({
@required this.shortcut,
@required this.image,
}) : assert(shortcut != null),
assert(image != null);
}