mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 18:16:54 +08:00
@@ -4,14 +4,14 @@ part 'container_size.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class ContainerSize {
|
||||
double? width;
|
||||
double? height;
|
||||
double? width;
|
||||
double? height;
|
||||
|
||||
ContainerSize({this.width, this.height});
|
||||
ContainerSize({this.width, this.height});
|
||||
|
||||
factory ContainerSize.fromJson(Map<String, dynamic> json) {
|
||||
return _$ContainerSizeFromJson(json);
|
||||
}
|
||||
factory ContainerSize.fromJson(Map<String, dynamic> json) {
|
||||
return _$ContainerSizeFromJson(json);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() => _$ContainerSizeToJson(this);
|
||||
Map<String, dynamic> toJson() => _$ContainerSizeToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user