基础页面

This commit is contained in:
2022-10-20 14:21:39 +08:00
parent 49ad269c2b
commit 42ba10ec61
62 changed files with 5132 additions and 54 deletions

View File

@@ -0,0 +1,14 @@
class EmojiModel {
EmojiModel({
required this.name,
required this.unicode,
});
String name;
int unicode;
factory EmojiModel.fromJson(Map<String, dynamic> json) => EmojiModel(
name: json['name'],
unicode: json['unicode'],
);
}