mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 04:00:28 +08:00
10 lines
158 B
Dart
10 lines
158 B
Dart
class Top {
|
|
dynamic result;
|
|
|
|
Top({this.result});
|
|
|
|
factory Top.fromJson(Map<String, dynamic> json) => Top(
|
|
result: json['result'] as dynamic,
|
|
);
|
|
}
|