EasyCol constructor

const EasyCol({
  1. Key? key,
  2. required Widget child,
  3. int? span,
  4. int? offset,
  5. double? spanWidth,
})

Implementation

const EasyCol({
  Key? key,
  required this.child,
  this.span,
  this.offset,
  this.spanWidth,
}) : super(key: key);