ResizerToggleData constructor

const ResizerToggleData({
  1. Color iconColor = Colors.black,
  2. double topPosition = 20,
  3. double opacity = 0.3,
  4. double iconSize = 20,
})

Implementation

const ResizerToggleData({
  this.iconColor = Colors.black,
  this.topPosition = 20,
  this.opacity = 0.3,
  this.iconSize = 20,
})  : assert(topPosition >= 0.0),
      assert(opacity >= 0.0),
      assert(iconSize >= 0.0);