getAgentVersion static method

Future<int> getAgentVersion()

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;
}