PropertyHint constructor
PropertyHint({
- PropertyType? propertyType,
- Iterable<
String> ? propertyTypeEnumValues, - Int64? propertyTypeIntMin,
- Int64? propertyTypeIntMax,
Implementation
factory PropertyHint({
PropertyType? propertyType,
$core.Iterable<$core.String>? propertyTypeEnumValues,
$fixnum.Int64? propertyTypeIntMin,
$fixnum.Int64? propertyTypeIntMax,
}) {
final $result = create();
if (propertyType != null) {
$result.propertyType = propertyType;
}
if (propertyTypeEnumValues != null) {
$result.propertyTypeEnumValues.addAll(propertyTypeEnumValues);
}
if (propertyTypeIntMin != null) {
$result.propertyTypeIntMin = propertyTypeIntMin;
}
if (propertyTypeIntMax != null) {
$result.propertyTypeIntMax = propertyTypeIntMax;
}
return $result;
}