SubstituteCommand constructor

const SubstituteCommand({
  1. required String pattern,
  2. required String replacement,
  3. bool global = false,
  4. bool confirmEach = false,
})

Implementation

const SubstituteCommand({
  required this.pattern,
  required this.replacement,
  this.global = false,
  this.confirmEach = false,
});