InspectOptions constructor
InspectOptions({})
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,
);