tapPaySdkVersion property

  1. @override
Future<String?> tapPaySdkVersion
override

To get the native SDK version

This information is different from the Flutter plugin version. It is the version of the TapPay's native SDK that the this plugin is using

return String with the native SDK version return null if the native SDK version is not available

Implementation

@override
Future<String?> get tapPaySdkVersion async {
  final sdkVersion = await methodChannel.invokeMethod<String>('sdkVersion');
  return sdkVersion;
}