CubeConsumer<C extends Cube> constructor

const CubeConsumer<C extends Cube>({
  1. Key? key,
  2. required AsyncCubeWidgetBuilder<C> builder,
  3. Object? arguments,
  4. C? cube,
  5. OnActionChanged<C, CubeAction>? onAction,
  6. CubeWidgetDispose<C>? dispose,
})

Implementation

const CubeConsumer({
  Key? key,
  required this.builder,
  this.arguments,
  this.cube,
  this.onAction,
  this.dispose,
}) : super(key: key);