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