mapVersion property
Returns the currently installed map data version.
Returns
- (Version) Version object describing the installed map data.
Also see:
- latestOnlineMapVersion - Retrieve the latest available online map version.
Implementation
static Version get mapVersion {
final OperationResult resultString = staticMethod(
'MapDetails',
'getMapVersion',
);
return Version.fromJson(resultString['result']);
}