SenzuMetaData constructor
const
SenzuMetaData({ - bool? show = true,
- String? title,
- String? description,
- IconData? icon = Icons.arrow_back,
- Color? iconColor = Colors.white,
- double? iconSize = 20,
- TextStyle? titleStyle = const TextStyle(color: Colors.white, fontSize: 14, fontWeight: FontWeight.w600),
- TextStyle? descriptionStyle = const TextStyle(color: Colors.white70, fontSize: 12, fontWeight: FontWeight.w400),
})
Implementation
const SenzuMetaData({
this.show = true,
this.title,
this.description,
this.icon = Icons.arrow_back,
this.iconColor = Colors.white,
this.iconSize = 20,
this.titleStyle = const TextStyle(
color: Colors.white,
fontSize: 14,
fontWeight: FontWeight.w600,
),
this.descriptionStyle = const TextStyle(
color: Colors.white70,
fontSize: 12,
fontWeight: FontWeight.w400,
),
});