latitude property
double
get
latitude
Gps information when shooting, nullable.
When the device is android10 or above, always null.
Implementation
double get latitude => _latitude ?? 0;
set
latitude
(double? latitude)
Gps information when shooting, nullable.
When the device is android10 or above, always null.
Implementation
set latitude(double? latitude) {
_latitude = latitude;
}