getAgentVersion static method
Returns the version of the Flurry SDK.
Implementation
static Future<int> getAgentVersion() async {
if (flurryAgent != null) {
int agentVersion = await flurryAgent!.getAgentVersion();
return agentVersion;
}
return 0;
}