BlockComponentStatefulWidget constructor

const BlockComponentStatefulWidget({
  1. Key? key,
  2. required Node node,
  3. required BlockComponentConfiguration configuration,
  4. bool showActions = false,
  5. BlockComponentActionBuilder? actionBuilder,
})

Implementation

const BlockComponentStatefulWidget({
  super.key,
  required this.node,
  required this.configuration,
  this.showActions = false,
  this.actionBuilder,
});