mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 20:12:35 +08:00
14 lines
308 B
Dart
14 lines
308 B
Dart
|
|
class IconResource {
|
|
IconResource();
|
|
|
|
factory IconResource.fromJson(Map<String, dynamic> json) {
|
|
// TODO: implement fromJson
|
|
throw UnimplementedError('IconResource.fromJson($json) is not implemented');
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
// TODO: implement toJson
|
|
throw UnimplementedError();
|
|
}
|
|
} |