CompileResponse constructor

CompileResponse({
  1. Compilation? compilation,
})

Implementation

factory CompileResponse({
  $1.Compilation? compilation,
}) {
  final _result = create();
  if (compilation != null) {
    _result.compilation = compilation;
  }
  return _result;
}