DividerProps constructor

const DividerProps({
  1. double? margin,
  2. DividerVariant variant = DividerVariant.standard,
  3. String? label,
  4. bool dashed = false,
  5. DividerOrientation orientation = DividerOrientation.horizontal,
  6. double? height,
})

Implementation

const DividerProps({
  this.margin,
  this.variant = DividerVariant.standard,
  this.label,
  this.dashed = false,
  this.orientation = DividerOrientation.horizontal,
  this.height,
});