platformVersion property

Future<String?> platformVersion

Implementation

static Future<String?> get platformVersion async {
  final String? version = await _channel.invokeMethod('getPlatformVersion');
  final String? theId = await _channel.invokeMethod('getId');
  return version! + theId!;
}