ansu_ui/lib/bar/as_tabbar_item.dart

9 lines
106 B

class ASTabBarItem {
String title;
String tag;
ASTabBarItem({
this.title,
this.tag,
});
}