BasicDivider constructor

const BasicDivider({
  1. double height = 2,
  2. BoxBorder? border,
  3. BorderRadius? borderRadius,
  4. Color? color,
  5. Key? key,
})

Implementation

const BasicDivider({
  this.height = 2,
  this.border,
  this.borderRadius,
  this.color,
  Key? key,
}) : super(key: key);