WeeDividerCenteredText constructor

const WeeDividerCenteredText({
  1. Key? key,
  2. Widget? child,
  3. double indent = 20,
  4. double endIndent = 20,
  5. Color color = Colors.grey,
})

Implementation

const WeeDividerCenteredText({
  Key? key,
  this.child,
  this.indent = 20,
  this.endIndent = 20,
  this.color = Colors.grey,
}) : super(key: key);