HeadingStyle constructor

const HeadingStyle({
  1. TextStyle? textStyle,
  2. EdgeInsetsGeometry? padding,
  3. bool? showDivider,
  4. Color? dividerColor,
  5. double? dividerThickness,
  6. EdgeInsetsGeometry? dividerPadding,
})

Creates a HeadingStyle. Null fields defer to the theme, then to the default.

Implementation

const HeadingStyle({
  this.textStyle,
  this.padding,
  this.showDivider,
  this.dividerColor,
  this.dividerThickness,
  this.dividerPadding,
});