Resizer constructor

Resizer(
  1. List<ResizableItem> items, {
  2. double collapseRatio = 0.5,
  3. double expandRatio = 0.5,
})

Implementation

Resizer(
  this.items, {
  this.collapseRatio = 0.5, // half of min size
  this.expandRatio = 0.5, // half of max size
});