Adaptive constructor

const Adaptive({
  1. Key? key,
  2. required Map<AdaptiveSize, AdaptiveBuilder> builders,
  3. Key? treeKey,
})

Implementation

const Adaptive({super.key, required this.builders, this.treeKey})
    : assert(builders.length > 0, 'At least one builder must be provided');