testVersion property

dynamic get testVersion

Implementation

get testVersion async {
  if (_testVersion == null) {
    final res = await pubClient.packageInfo('test');
    _testVersion = res.version;
  }
  return _testVersion;
}