divide4 static method

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

Constructs a Divider with 4.0 of height

Implementation

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