DataProfileResult_Profile_Field constructor
DataProfileResult_Profile_Field({
- String? name,
- String? type,
- String? mode,
- DataProfileResult_Profile_Field_ProfileInfo? profile,
Implementation
factory DataProfileResult_Profile_Field({
$core.String? name,
$core.String? type,
$core.String? mode,
DataProfileResult_Profile_Field_ProfileInfo? profile,
}) {
final $result = create();
if (name != null) {
$result.name = name;
}
if (type != null) {
$result.type = type;
}
if (mode != null) {
$result.mode = mode;
}
if (profile != null) {
$result.profile = profile;
}
return $result;
}