VxDivider constructor

const VxDivider({
  1. Key? key,
  2. VxDividerType type = VxDividerType.horizontal,
  3. Color? color,
  4. double width = 1,
  5. double? indent,
  6. double? endIndent,
})

Implementation

const VxDivider({
  super.key,
  this.type = VxDividerType.horizontal,
  this.color,
  this.width = 1,
  this.indent,
  this.endIndent,
});