ParsedUserInput constructor

const ParsedUserInput({
  1. required String rawInput,
  2. required List<InputSegment> segments,
  3. required List<String> mentionedFiles,
  4. required List<String> mentionedUrls,
  5. required bool isCommand,
  6. String? commandName,
  7. String? commandArgs,
  8. required bool isEmpty,
  9. required bool isMultiline,
  10. required int lineCount,
})

Implementation

const ParsedUserInput({
  required this.rawInput,
  required this.segments,
  required this.mentionedFiles,
  required this.mentionedUrls,
  required this.isCommand,
  this.commandName,
  this.commandArgs,
  required this.isEmpty,
  required this.isMultiline,
  required this.lineCount,
});