mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
12 lines
167 B
Dart
12 lines
167 B
Dart
class Badge {
|
|
String? text;
|
|
|
|
Badge({
|
|
this.text,
|
|
});
|
|
|
|
factory Badge.fromJson(Map<String, dynamic> json) => Badge(
|
|
text: json['text'] as String?,
|
|
);
|
|
}
|