BindValue<T> constructor

const BindValue<T>({
  1. Key? key,
  2. required T value,
  3. TransitionBuilder? builder,
  4. Widget? child,
})

Implementation

const BindValue({
  Key? key,
  required this.value,
  this.builder,
  Widget? child,
}) : super(key: key, child: child);