DotBorder constructor

const DotBorder({
  1. double width = 1.0,
  2. Color color = Colors.black87,
  3. double padding = 0.0,
  4. DotBorderType type = DotBorderType.solid,
})

Default constructor

Implementation

const DotBorder({
  this.width = 1.0,
  this.color = Colors.black87,
  this.padding = 0.0,
  this.type = DotBorderType.solid,
});