ModulaDivider constructor

const ModulaDivider({
  1. Key? key,
  2. ModulaDividerType type = ModulaDividerType.solid,
  3. ModulaDividerOrientation orientation = ModulaDividerOrientation.horizontal,
  4. double thickness = 1.0,
  5. Color color = Colors.grey,
  6. double spacing = 4.0,
  7. String? label,
  8. TextStyle? labelStyle,
})

Implementation

const ModulaDivider({
  super.key,
  this.type = ModulaDividerType.solid,
  this.orientation = ModulaDividerOrientation.horizontal,
  this.thickness = 1.0,
  this.color = Colors.grey,
  this.spacing = 4.0,
  this.label,
  this.labelStyle,
});