divide0 static method

Divider divide0({
  1. Color color = _defaultColor,
  2. double indent = _defaultIndent,
})

Constructs a Divider with 0.0 of height

Implementation

static Divider divide0({Color color = _defaultColor, double indent = _defaultIndent}) {
  return Divider(
    height: 0.0,
    thickness: _defaultThickness,
    indent: indent,
    endIndent: indent,
    color: color,
  );
}