NextCol constructor

const NextCol({
  1. Key? key,
  2. String sizes = "col-12",
  3. required Widget child,
  4. BoxDecoration? decoration,
  5. EdgeInsets? margin,
  6. EdgeInsets? padding,
  7. String offset = "",
  8. List<String> invisibleFor = const <String>[],
})

Implementation

const NextCol(
    {Key? key,
    this.sizes = "col-12",
    required this.child,
    this.decoration,
    this.margin,
    this.padding,
    this.offset = "",
    this.invisibleFor = const <String>[]})
    : super(key: key);