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