ExpandedGrid constructor

ExpandedGrid({
  1. Key? key,
  2. int column = 1,
  3. int row = 1,
  4. required List<ExpandedGridContent> children,
})

Implementation

ExpandedGrid({Key? key, this.column = 1, this.row = 1,required this.children}): super(key: key);