Divider constructor

const Divider({
  1. Key? key,
  2. Color? color,
  3. double? height,
  4. double? thickness,
  5. double? indent,
  6. double? endIndent,
  7. Widget? child,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const Divider({
  super.key,
  this.color,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.child,
  this.padding,
});