SimpleHeader constructor

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

Implementation

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