mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 01:56:47 +08:00
12 lines
265 B
Dart
12 lines
265 B
Dart
class HighlightIneffectivePink {
|
|
String? typeUrl;
|
|
|
|
HighlightIneffectivePink({this.typeUrl});
|
|
|
|
factory HighlightIneffectivePink.fromJson(Map<String, dynamic> json) {
|
|
return HighlightIneffectivePink(
|
|
typeUrl: json['type_url'] as String?,
|
|
);
|
|
}
|
|
}
|