divide10 static method

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

Constructs a Divider with 10.0 of height

Implementation

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