mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 08:06:21 +08:00
custom emoji tooltip
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
class Meta {
|
||||
int? size;
|
||||
String? alias;
|
||||
|
||||
Meta({this.size});
|
||||
Meta({
|
||||
this.size,
|
||||
this.alias,
|
||||
});
|
||||
|
||||
factory Meta.fromJson(Map<String, dynamic> json) => Meta(
|
||||
size: json['size'] as int?,
|
||||
alias: json['alias'] as String?,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user