latitude property

double latitude

Gps information when shooting, nullable.

When the device is android10 or above, always null.

Implementation

double get latitude => _latitude ?? 0;
void latitude=(double? latitude)

Gps information when shooting, nullable.

When the device is android10 or above, always null.

Implementation

set latitude(double? latitude) {
  _latitude = latitude;
}