indentUnit top-level property

Facet<String, String> indentUnit
final

Facet for the indentation unit (string of spaces or a tab).

Implementation

final indentUnit = Facet.define<String, String>(
  FacetConfig(
    combine: (values) => values.isNotEmpty ? values.first : '  ',
  ),
);