tealeafVersion property

Future<String> tealeafVersion

Implementation

static Future<String> get tealeafVersion async {
  try {
    final String version = await _channel.invokeMethod('getTealeafVersion');
    tlLogger.v("Tealeaf version: $version");
    return version;
  } on PlatformException catch (pe) {
    throw TealeafException(pe,
        msg: 'Unable to process TeaLeaf request version message!');
  }
}