renderVersionOutput function
Implementation
String renderVersionOutput() {
final dartVersion = Platform.version.split(' ').first;
return '''
dpk
Version: ${pubspec.version}
Dart SDK: $dartVersion
'''
.trimRight();
}
String renderVersionOutput() {
final dartVersion = Platform.version.split(' ').first;
return '''
dpk
Version: ${pubspec.version}
Dart SDK: $dartVersion
'''
.trimRight();
}