Partitions constructor

Partitions({
  1. required List<Partition> children,
  2. MainAxisSize mainAxisSize = MainAxisSize.max,
})

Implementation

Partitions({
  required this.children,
  this.mainAxisSize = MainAxisSize.max,
})  : _context = PartitionsContext(children.length),
      super();