FlyBox constructor

FlyBox({
  1. Key? key,
  2. Widget? child,
  3. List<Widget>? children,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. Decoration? decoration,
  8. Decoration? foregroundDecoration,
  9. double? width,
  10. double? height,
  11. BoxConstraints? constraints,
  12. Matrix4? transform,
  13. AlignmentGeometry? transformAlignment,
  14. Clip? clipBehavior,
  15. FlyStyle flyStyle = const FlyStyle(),
})

Implementation

FlyBox({
  super.key,
  this.child,
  this.children,
  this.alignment,
  this.padding,
  this.margin,
  this.decoration,
  this.foregroundDecoration,
  this.width,
  this.height,
  this.constraints,
  this.transform,
  this.transformAlignment,
  this.clipBehavior,
  FlyStyle flyStyle = const FlyStyle(),
}) : _flyStyle = flyStyle;