LogoWidget constructor

const LogoWidget({
  1. dynamic key,
  2. double height = 200,
  3. double width = 200,
})

Implementation

const LogoWidget({
  super.key,
  this.height = 200,
  this.width = 200,
});