import 'package:flutter/material.dart'; class AppBarData { final String? title; final String? subtitle; final bool hasBack; final Widget? trailing; final bool isSmall; final bool? hasElevation; AppBarData({ this.title, this.subtitle, this.hasBack = false, this.trailing, this.isSmall = false, this.hasElevation = true, }); }