NiceDivider constructor

const NiceDivider({
  1. Key? key,
  2. String? label,
  3. Axis direction = Axis.horizontal,
  4. double thickness = 1,
  5. Color? color,
  6. EdgeInsets? margin,
})

Implementation

const NiceDivider({
  super.key,
  this.label,
  this.direction = Axis.horizontal,
  this.thickness = 1,
  this.color,
  this.margin,
});