FlateComponentActions constructor

const FlateComponentActions({
  1. required FlateComponentMixin<StatefulWidget> component,
  2. required Widget child,
  3. ActionDispatcher? actionDispatcher,
  4. bool reduceRebuilds = false,
  5. Key? key,
})

Implementation

const FlateComponentActions({
  required this.component,
  required this.child,
  this.actionDispatcher,
  this.reduceRebuilds = false,
  Key? key,
}) : super(key: key);