InfContainer constructor

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

Implementation

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