ResourceReference constructor

ResourceReference({
  1. String? type,
  2. String? childType,
})

Implementation

factory ResourceReference({
  $core.String? type,
  $core.String? childType,
}) {
  final result = create();
  if (type != null) result.type = type;
  if (childType != null) result.childType = childType;
  return result;
}