mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-11 00:10:29 -07:00
8 lines
177 B
Dart
8 lines
177 B
Dart
class PosterDefaults {
|
|
final double size;
|
|
final double ratio;
|
|
|
|
double get gridRatio => size * ratio;
|
|
|
|
const PosterDefaults({required this.size, required this.ratio});
|
|
}
|