platformVersion property

  1. @visibleForTesting
Future<String?> platformVersion

This constructor is only used for testing and shouldn't be accessed by users of the plugin. It isn't useful for this plugin.

Implementation

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