class AppBarData {
final String? title;
final String? subtitle;
final bool hasBack;
AppBarData({this.title, this.subtitle, this.hasBack = false});
}