Indentation constructor

const Indentation({
  1. double width = DEF_INDENT_WIDTH,
  2. double thickness = 1,
  3. IndentStyle style = IndentStyle.squareJoint,
  4. Color color = const Color(0xFFBDBDBD),
  5. Offset offset = Offset.zero,
})

Implementation

const Indentation({
  this.width = DEF_INDENT_WIDTH,
  this.thickness = 1,
  this.style = IndentStyle.squareJoint,
  this.color = const Color(0xFFBDBDBD),
  this.offset = Offset.zero,
});