SectionItem constructor

const SectionItem({
  1. Key? key,
  2. required Widget child,
  3. String? sizes,
  4. double? maxHeight,
  5. double? maxWidth,
})

Implementation

const SectionItem({
  super.key,
  required this.child,
  this.sizes,
  this.maxHeight,
  this.maxWidth,
});