getReleaseVersion static method
Returns the release version of the Flurry SDK.
Implementation
static Future<String?> getReleaseVersion() async {
if (flurryAgent != null) {
String version = await flurryAgent!.getReleaseVersion();
return version;
}
return null;
}