DataProfileResult_Profile constructor

DataProfileResult_Profile({
  1. Iterable<DataProfileResult_Profile_Field>? fields,
})

Implementation

factory DataProfileResult_Profile({
  $core.Iterable<DataProfileResult_Profile_Field>? fields,
}) {
  final $result = create();
  if (fields != null) {
    $result.fields.addAll(fields);
  }
  return $result;
}