Logo constructor

const Logo({
  1. required String title,
  2. Widget? icon,
  3. String? subtitle,
  4. String? href,
  5. Key? key,
})

Implementation

const Logo({
  required this.title,
  this.icon,
  this.subtitle,
  this.href,
  super.key,
});