PlexStatGrid constructor

const PlexStatGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. int columns = 4,
  4. double minWidth = 200,
})

Implementation

const PlexStatGrid({
  super.key,
  required this.children,
  this.columns = 4,
  this.minWidth = 200,
});