SimpleHeader constructor

const SimpleHeader({
  1. Key? key,
  2. String? title,
  3. double fontSize = 20,
  4. double height = 56,
  5. Positioned? right,
})

Implementation

const SimpleHeader({
  super.key,
  this.title,
  this.fontSize = 20,
  this.height = 56,
  this.right,
});