latestOnlineMapVersion property

Version get latestOnlineMapVersion

Returns the latest available online map version known to the SDK.

Returns

  • (Version) Latest online map version metadata.

Also see:

  • mapVersion - Retrieve the currently installed map data version.

Implementation

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

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