IconBorder constructor

const IconBorder({
  1. double width = 1.0,
  2. Color color = Colors.black,
})

Implementation

const IconBorder({
  this.width = 1.0,
  this.color = Colors.black,
}) : assert(width >= 0.0);