CLIProfile constructor

CLIProfile({
  1. required bool canQuote,
  2. required bool canUseShortAccumulated,
  3. required bool canUseParameters,
  4. required bool canUseValuables,
  5. required List<CLIEntryFormat> entries,
  6. required List<Quote> quoteChars,
  7. required String escapeChar,
  8. required String spaceChar,
})

Implementation

CLIProfile({
  required this.canQuote,
  required this.canUseShortAccumulated,
  required this.canUseParameters,
  required this.canUseValuables,
  required this.entries,
  required this.quoteChars,
  required this.escapeChar,
  required this.spaceChar
});