mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
12 lines
244 B
Dart
12 lines
244 B
Dart
class IconFont {
|
|
String? name;
|
|
String? text;
|
|
|
|
IconFont({this.name, this.text});
|
|
|
|
factory IconFont.fromJson(Map<String, dynamic> json) => IconFont(
|
|
name: json['name'] as String?,
|
|
text: json['text'] as String?,
|
|
);
|
|
}
|