RingLayout constructor

const RingLayout({
  1. Key? key,
  2. required List<Widget> children,
  3. bool reverse = false,
  4. double radiusRatio = 1.0,
  5. double initAngle = 0,
})

Implementation

const RingLayout({
  Key? key,
  required this.children,
  this.reverse = false,
  this.radiusRatio = 1.0,
  this.initAngle = 0,
})  : assert(0.0 <= radiusRatio && radiusRatio <= 1.0),
      assert(0 <= initAngle && initAngle <= 360),
      super(key: key);