SenzuMetaData constructor

const SenzuMetaData({
  1. bool? show = true,
  2. String? title,
  3. String? description,
  4. IconData? icon = Icons.arrow_back,
  5. Color? iconColor = Colors.white,
  6. double? iconSize = 20,
  7. TextStyle? titleStyle = const TextStyle(color: Colors.white, fontSize: 14, fontWeight: FontWeight.w600),
  8. 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,
  ),
});