getVersion property

Future<String?> get getVersion

Implementation

static Future<String?> get getVersion async {
  final String? version =
      await _channel.invokeMethod(FlyVerifySDKMethods.getVersion.name);
  return version;
}