getPlatformVersion method
Implementation
@override
Future<String?> getPlatformVersion() async {
if (_sdkKey == null) {
throw Exception("Incomme SDK not initialized. Call initialize() first.");
}
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}