LogoGrid constructor

const LogoGrid({
  1. required List<LogoItem> logos,
  2. double logoHeight = 40,
  3. double gap = 32,
  4. bool grayscale = true,
  5. String? title,
  6. int columns = 6,
  7. Key? key,
})

Implementation

const LogoGrid({
  required this.logos,
  this.logoHeight = 40,
  this.gap = 32,
  this.grayscale = true,
  this.title,
  this.columns = 6,
  super.key,
});