LogoItem constructor

const LogoItem({
  1. required String name,
  2. String? imageUrl,
  3. String? href,
})

Implementation

const LogoItem({
  required this.name,
  this.imageUrl,
  this.customLogo,
  this.href,
});