Resizer constructor
Resizer(
- List<
ResizableItem> items, { - double collapseRatio = 0.5,
- double expandRatio = 0.5,
Implementation
Resizer(
this.items, {
this.collapseRatio = 0.5, // half of min size
this.expandRatio = 0.5, // half of max size
});