PropertyHint constructor

PropertyHint({
  1. PropertyType? propertyType,
  2. Iterable<String>? propertyTypeEnumValues,
  3. Int64? propertyTypeIntMin,
  4. 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;
}