mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
5bea96669d
returned `TopBarShape` fixed `TopBarShape`
12 lines
347 B
Dart
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()}';
|
|
}
|