mapVersion property

Version get mapVersion

Get the map version.

Returns

  • The map version

Throws

  • An exception if it fails.

Implementation

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

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