m3_lightmeter/lib/data/models/exposure_pair.dart
Vadim 5bea96669d Made TopBarShape responsive
returned `TopBarShape`

fixed `TopBarShape`
2023-01-20 23:03:55 +03:00

12 lines
347 B
Dart

import 'photography_values/aperture_value.dart';
import 'photography_values/shutter_speed_value.dart';
class ExposurePair {
final ApertureValue aperture;
final ShutterSpeedValue shutterSpeed;
const ExposurePair(this.aperture, this.shutterSpeed);
@override
String toString() => '${aperture.toString()} - ${shutterSpeed.toString()}';
}