latitudeDeg property

double get latitudeDeg

Get the latitude coordinates of the event in milliseconds since epoch.

Returns

The latitude coordinates of the event in milliseconds since epoch.

Throws

  • An exception if it fails.

Implementation

double get latitudeDeg {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MappedDrivingEvent',
    'getLatitudeDeg',
  );

  return resultString['result'];
}