NikuStack constructor

NikuStack(
  1. List<Widget> children, {
  2. Key? key,
  3. AlignmentGeometry? alignment,
  4. TextDirection? textDirection,
  5. StackFit? fit,
  6. Clip? clipBehavior,
})

Implementation

NikuStack(
  this.children, {
  Key? key,
  this.alignment,
  this.textDirection,
  this.fit,
  this.clipBehavior,
}) : super(key: key);