CodeGeneratorResponse_File constructor
CodeGeneratorResponse_File({
- String? name,
- String? insertionPoint,
- String? content,
- GeneratedCodeInfo? generatedCodeInfo,
Implementation
factory CodeGeneratorResponse_File({
$core.String? name,
$core.String? insertionPoint,
$core.String? content,
$0.GeneratedCodeInfo? generatedCodeInfo,
}) {
final $result = create();
if (name != null) {
$result.name = name;
}
if (insertionPoint != null) {
$result.insertionPoint = insertionPoint;
}
if (content != null) {
$result.content = content;
}
if (generatedCodeInfo != null) {
$result.generatedCodeInfo = generatedCodeInfo;
}
return $result;
}