Hr constructor

Hr({
  1. Color color = Colors.black,
  2. double height = 1.0,
  3. EdgeInsets padding = const EdgeInsets.only(top: 10.0, left: 0.0, right: 0.0, bottom: 10.0),
})

Implementation

Hr({
  this.color = Colors.black,
  this.height = 1.0,
  this.padding = const EdgeInsets.only(
    top: 10.0,
    left: 0.0,
    right: 0.0,
    bottom: 10.0,
  ),
});