InfContainer constructor

InfContainer({
  1. required Widget? child,
  2. Alignment alignment = Alignment.center,
  3. Decoration? decoration,
  4. EdgeInsetsGeometry? padding,
  5. Color? color,
  6. Decoration? foregroundDecoration,
  7. BoxConstraints? constraints,
  8. EdgeInsetsGeometry? margin,
  9. Matrix4? transform,
  10. AlignmentGeometry? transformAlignment,
})

Implementation

InfContainer(
    {required this.child,
    this.alignment = Alignment.center,
    this.decoration,
    this.padding,
    this.color,
    this.foregroundDecoration,
    this.constraints,
    this.margin,
    this.transform,
    this.transformAlignment});