parsePlatformVersion function
Parse the text from Platform.version
Implementation
Version parsePlatformVersion(String text) {
return Version.parse(text.split(' ').first);
}
Parse the text from Platform.version
Version parsePlatformVersion(String text) {
return Version.parse(text.split(' ').first);
}