AppBarTitle constructor

const AppBarTitle({
  1. Key? key,
  2. required double screenWidth,
  3. required String title,
})

Implementation

const AppBarTitle({
  super.key,
  required this.screenWidth,
  required this.title,
});