UIHexagon constructor

const UIHexagon({
  1. Key? key,
  2. Widget? child,
  3. double width = 100.0,
  4. double height = 100.0,
})

Implementation

const UIHexagon({
  super.key,
  this.child,
  this.width = 100.0,
  this.height = 100.0,
});