CustomDivider constructor

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

Divider 分割线组件

Implementation

const CustomDivider({
  super.key,
  super.height,
  super.thickness = 0.5,
  super.indent,
  super.endIndent,
  super.color,
});