Files
PiliPlus/lib/models/space_archive/three_point.dart
bggRGjQaUbCoE f77088b870 Refactor member page (#3)
* refactor: member page

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
2024-10-17 11:18:59 +08:00

18 lines
267 B
Dart

class ThreePoint {
ThreePoint({
this.type,
this.icon,
this.text,
});
String? type;
String? icon;
String? text;
ThreePoint.fromJson(Map<String, dynamic> json) {
type = json['type'];
icon = json['icon'];
text = json['text'];
}
}