NZDivider constructor

const NZDivider({
  1. Key? key,
  2. double height = 16.0,
  3. double thickness = 1.0,
  4. double? indent,
  5. double? endIndent,
  6. Color? color,
})

Implementation

const NZDivider({
  super.key,
  this.height = 16.0,
  this.thickness = 1.0,
  this.indent,
  this.endIndent,
  this.color,
});