frameworkVersion property

Future<String?> get frameworkVersion

The version of the underlying native Nutrient SDK on the current platform (Android, iOS, or Web) — for example "11.5.1".

Resolved from the platform implementation (a stateless, SDK-global query), so it reflects the real native framework — unlike version, which is the Dart bindings version. Returns null when no platform implementation is registered or the platform doesn't report a version.

Implementation

static Future<String?> get frameworkVersion async =>
    NutrientFlutterPlatform.instance?.getPlatformVersion();