mapVersion property

Version get mapVersion

Get the map version.

Returns

  • The map version

Implementation

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

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