TopBar constructor

const TopBar({
  1. Key? key,
  2. String? title,
  3. bool withBackButton = false,
  4. Widget? rightButton,
})

Implementation

const TopBar({
  super.key,
  this.title,
  this.withBackButton = false,
  this.rightButton,
});