CodeGeneratorResponse_File constructor

CodeGeneratorResponse_File({
  1. String? name,
  2. String? insertionPoint,
  3. String? content,
  4. GeneratedCodeInfo? generatedCodeInfo,
})

Implementation

factory CodeGeneratorResponse_File({
  $core.String? name,
  $core.String? insertionPoint,
  $core.String? content,
  $61.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;
}