platformVersion property

Future<String?> platformVersion

Dummy method to test the Platform Channel.

You can use this to add the platform used to in the checkout.

Implementation

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