Divider constructor

const Divider({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. DividerThemeData? style,
  4. double? size,
})

Creates a divider.

Implementation

const Divider({
  super.key,
  this.direction = Axis.horizontal,
  this.style,
  this.size,
});