getSdkVersion static method
Get SDK version information
Implementation
static Future<String?> getSdkVersion() async {
try {
final result = await _channel.invokeMethod('getSdkVersion');
return result as String?;
} catch (e) {
return null;
}
}