DividerBlockComponentWidget constructor

const DividerBlockComponentWidget({
  1. Key? key,
  2. required Node node,
  3. bool showActions = false,
  4. BlockComponentActionBuilder? actionBuilder,
  5. BlockComponentConfiguration configuration = const BlockComponentConfiguration(),
  6. Color lineColor = Colors.grey,
  7. double height = 10,
  8. DividerBlockWrapper? wrapper,
})

Implementation

const DividerBlockComponentWidget({
  super.key,
  required super.node,
  super.showActions,
  super.actionBuilder,
  super.configuration = const BlockComponentConfiguration(),
  this.lineColor = Colors.grey,
  this.height = 10,
  this.wrapper,
});