fixed ApertureValue value

This commit is contained in:
Vadim 2022-10-29 21:02:24 +03:00
parent 8871b643d2
commit 888a9a6a76

View file

@ -4,7 +4,7 @@ class ApertureValue extends PhotographyValue<double> {
const ApertureValue(super.rawValue, super.stopType);
@override
double get value => 1 / rawValue;
double get value => rawValue;
@override
String toString() {