InspectOptions constructor

InspectOptions({
  1. bool? colors,
  2. bool? compact,
  3. num? depth,
  4. num? breakLength,
  5. bool? escapeSequences,
  6. num? iterableLimit,
  7. bool? showProxy,
  8. bool? sorted,
  9. bool? trailingComma,
  10. bool? getters,
  11. bool? showHidden,
  12. num? strAbbreviateSize,
})

Implementation

factory InspectOptions({
  _i2.bool? colors,
  _i2.bool? compact,
  _i2.num? depth,
  _i2.num? breakLength,
  _i2.bool? escapeSequences,
  _i2.num? iterableLimit,
  _i2.bool? showProxy,
  _i2.bool? sorted,
  _i2.bool? trailingComma,
  _i2.bool? getters,
  _i2.bool? showHidden,
  _i2.num? strAbbreviateSize,
}) =>
    InspectOptions._(
      colors: colors,
      compact: compact,
      depth: depth,
      breakLength: breakLength,
      escapeSequences: escapeSequences,
      iterableLimit: iterableLimit,
      showProxy: showProxy,
      sorted: sorted,
      trailingComma: trailingComma,
      getters: getters,
      showHidden: showHidden,
      strAbbreviateSize: strAbbreviateSize,
    );