divider method

Divider divider({
  1. Color color = const Color(0xfff0f0f0),
  2. double indent = 0,
  3. double endIndent = 0,
})

Implementation

Divider divider({Color color = const Color(0xfff0f0f0), double indent = 0, double endIndent = 0}) {
  return Divider(
    height: 1,
    indent: indent.w,
    endIndent: endIndent.w,
    color: color,
  );
}