CreatorWatcher<T> constructor

const CreatorWatcher<T>({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext,
    2. T
    ),
  3. required Creator<T> creator,
})

Implementation

const CreatorWatcher({
  super.key,
  required this.builder,
  required this.creator,
});