NeoGrid constructor

const NeoGrid({
  1. required int columns,
  2. required List<Widget> children,
  3. Key? key,
})

Implementation

const NeoGrid({
  required this.columns,
  required this.children,
  Key? key,
}) : super(key: key);