mapVersion property

Version get mapVersion

Returns the currently installed map data version.

Returns

  • (Version) Version object describing the installed map data.

Also see:

Implementation

static Version get mapVersion {
  final OperationResult resultString = staticMethod(
    'MapDetails',
    'getMapVersion',
  );

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