Logo constructor

Logo({
  1. double? fontSize,
  2. double? bannerHeight,
  3. double? logoHeight,
  4. double? logoWidth,
})

Implementation

Logo({
  this.fontSize,
  this.bannerHeight,
  this.logoHeight,
  this.logoWidth,
});