mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-25 21:05:52 +08:00
10 lines
184 B
Dart
10 lines
184 B
Dart
class RenderSpec {
|
|
int? opacity;
|
|
|
|
RenderSpec({this.opacity});
|
|
|
|
factory RenderSpec.fromJson(Map<String, dynamic> json) => RenderSpec(
|
|
opacity: json['opacity'] as int?,
|
|
);
|
|
}
|