mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
5602b1ed80
* updated pub version * added lint * --code=always_use_package_imports * dart fixes * format * other lints
11 lines
289 B
Dart
11 lines
289 B
Dart
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
class ExposurePair {
|
|
final ApertureValue aperture;
|
|
final ShutterSpeedValue shutterSpeed;
|
|
|
|
const ExposurePair(this.aperture, this.shutterSpeed);
|
|
|
|
@override
|
|
String toString() => '$aperture - $shutterSpeed';
|
|
}
|