CodeAction constructor
const
CodeAction({
- required String title,
- required CodeActionKind kind,
- Diagnostic? diagnostic,
- bool isPreferred = false,
- List<
TextEdit> ? edits, - CodeCommand? command,
Implementation
const CodeAction({
required this.title,
required this.kind,
this.diagnostic,
this.isPreferred = false,
this.edits,
this.command,
});