ExtractMethodRefactoringOptions constructor

ExtractMethodRefactoringOptions({
  1. String? returnType,
  2. bool? createGetter,
  3. String? name,
  4. List<RefactoringMethodParameter>? parameters,
  5. bool? extractAll,
})

Implementation

ExtractMethodRefactoringOptions(
    {this.returnType,
    this.createGetter,
    this.name,
    this.parameters,
    this.extractAll});