platformVersion property

Future<String> platformVersion

Implementation

static Future<String> get platformVersion async {
  try {
    return await _channel.invokeMethod('getPlatformVersion');
  } on PlatformException catch (pe) {
    throw TealeafException(pe,
        msg: 'Unable to process platform version request message!');
  }
}