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