NextGridView constructor

const NextGridView({
  1. Key? key,
  2. required String sizes,
  3. required List<NextGridItem> childrens,
  4. double horizontalSpacing = 20.0,
  5. double verticalSpacing = 20.0,
})

Implementation

const NextGridView(
    {Key? key,
    required this.sizes,
    required this.childrens,
    this.horizontalSpacing = 20.0,
    this.verticalSpacing = 20.0})
    : super(key: key);