getVersion method
Implementation
@override
Future<String> getVersion() async {
try {
return await _configChannel
.invokeMethod<String>(SuperfineSdkChannelMethods.getVersion) ??
"";
} catch (e) {
print("Error fetching Version: $e");
return "Error";
}
}