FollyDivider constructor

const FollyDivider({
  1. Key? key,
  2. double height = 1.0,
  3. Color? color,
  4. bool enabled = true,
})

Implementation

const FollyDivider({
  super.key,
  this.height = 1.0,
  this.color,
  this.enabled = true,
});