TGridCol constructor

const TGridCol({
  1. Key? key,
  2. required Widget child,
  3. int? sm,
  4. int? md,
  5. int? lg,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const TGridCol({
  super.key,
  required this.child,
  this.sm,
  this.md,
  this.lg,
  this.padding,
});