DividerVertical constructor

const DividerVertical({
  1. Key? key,
  2. double height = 32.0,
})

Creates a DividerVertical with the specified height.

Implementation

const DividerVertical({
  super.key,
  this.height = 32.0,
});