PueHeader constructor

PueHeader({
  1. double? gutters,
  2. String? text,
  3. String? subtext,
  4. Widget? title,
  5. Widget? subtitle,
  6. double textSpacing = PueConstants.defaultTextSpacing,
  7. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
  8. bool centerTitle = false,
})

Implementation

PueHeader({
  this.gutters,
  this.text,
  this.subtext,
  this.title,
  this.subtitle,
  this.textSpacing = PueConstants.defaultTextSpacing,
  this.padding = const EdgeInsets.all(0),
  this.centerTitle = false,
});