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;
}