DrivenChildResolver<T extends Widget?> constructor

DrivenChildResolver<T extends Widget?>(
  1. DrivenPropertyResolver<T> resolver, {
  2. Key? key,
})

Creates a DrivenChildResolver from a provided resolver function.

This class allows you to dynamically determine the child widget based on events using a custom resolver function.

Implementation

DrivenChildResolver(this.resolver, {super.key}) : super(resolver({}));