SpGridItem constructor

const SpGridItem({
  1. Key? key,
  2. int xs = 12,
  3. int? sm,
  4. int? md,
  5. int? lg,
  6. EdgeInsetsGeometry? padding,
  7. AlignmentGeometry? aligment,
  8. int? xl,
  9. required Widget child,
  10. BoxDecoration? decoration,
  11. SpOrder order = const SpOrder(),
})

The item of the SpGrid

Implementation

const SpGridItem(
    {Key? key,
    this.xs = 12,
    this.sm,
    this.md,
    this.lg,
    this.padding,
    this.aligment,
    this.xl,
    required this.child,
    this.decoration,
    this.order = const SpOrder()});