mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
14 lines
300 B
Dart
14 lines
300 B
Dart
|
|
class FansEffect {
|
|
FansEffect();
|
|
|
|
factory FansEffect.fromJson(Map<String, dynamic> json) {
|
|
// TODO: implement fromJson
|
|
throw UnimplementedError('FansEffect.fromJson($json) is not implemented');
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
// TODO: implement toJson
|
|
throw UnimplementedError();
|
|
}
|
|
} |