latestOnlineMapVersion property

Version get latestOnlineMapVersion

Get latest online map version.

Returns

  • Latest online map version

Throws

  • An exception if it fails.

Implementation

static Version get latestOnlineMapVersion {
  final OperationResult resultString = objectMethod(
    0,
    'MapDetails',
    'getLatestOnlineMapVersion',
  );

  return Version.fromJson(resultString['result']);
}