mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-14 21:24:02 +08:00
12 lines
236 B
Dart
12 lines
236 B
Dart
class Dimension {
|
|
int? width;
|
|
int? height;
|
|
|
|
Dimension({this.width, this.height});
|
|
|
|
factory Dimension.fromJson(Map<String, dynamic> json) => Dimension(
|
|
width: json['width'] as int?,
|
|
height: json['height'] as int?,
|
|
);
|
|
}
|