VxDivider constructor

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

Implementation

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