LabelDescriptor constructor
LabelDescriptor({
- String? key,
- LabelDescriptor_ValueType? valueType,
- String? description,
Implementation
factory LabelDescriptor({
$core.String? key,
LabelDescriptor_ValueType? valueType,
$core.String? description,
}) {
final _result = create();
if (key != null) {
_result.key = key;
}
if (valueType != null) {
_result.valueType = valueType;
}
if (description != null) {
_result.description = description;
}
return _result;
}