mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08: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});
|
|
}
|