sdkVersion property

String get sdkVersion

Returns the SDK version as a human-readable string.

The returned format is major.minor.year.week.revision

Returns

  • String: the formatted SDK version (for example 7.1.25.46.4923803B).

Implementation

static String get sdkVersion {
  final OperationResult resultString = staticMethod(
    'SdkSettings',
    'getSdkVersion',
  );

  return resultString['result'];
}