BusyIndicatorBuilder constructor

const BusyIndicatorBuilder({
  1. Key? key,
  2. required StatedResult result,
  3. required ValueWidgetBuilder<bool> builder,
  4. Widget? child,
})

Invoke builder with boolean indicates whether result is WaitingResult

Implementation

const BusyIndicatorBuilder({
  Key? key,
  required this.result,
  required this.builder,
  this.child,
}) : super(key: key);