NextCol constructor
const
NextCol({
- Key? key,
- String sizes = "col-12",
- required Widget child,
- BoxDecoration? decoration,
- EdgeInsets? margin,
- EdgeInsets? padding,
- String offset = "",
- 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);