TreeRowBorder.all constructor

const TreeRowBorder.all(
  1. BorderSide side
)

Creates a TreeRowBorder with the provided BorderSide applied to all sides.

Implementation

const TreeRowBorder.all(BorderSide side)
  : left = side,
    right = side,
    super(leading: side, trailing: side);