copyWith method

ScriptGeneratorOptions copyWith({
  1. String? fileSystemEntityIgnore,
  2. bool? isVerbose,
})

Implementation

ScriptGeneratorOptions copyWith({
  String? fileSystemEntityIgnore,
  bool? isVerbose,
}) {
  return ScriptGeneratorOptions(
    fileSystemEntityIgnore:
        fileSystemEntityIgnore ?? this.fileSystemEntityIgnore,
    isVerbose: isVerbose ?? this.isVerbose,
  );
}