version property

String? version

Implementation

String? get version {
  return _version;
}
void version=(String? value)

Implementation

set version(String? value) {
  if (value != null && value.length > 10) {
    throw ArgumentError("version should be not more than 10 symbols");
  }
  _version = value;
}