logo static method

dynamic logo({
  1. dynamic logoImage,
  2. dynamic logoHeight,
  3. dynamic logoWidth,
})

Implementation

static logo({logoImage, logoHeight, logoWidth}) {
  return Image.asset(logoImage, height: logoHeight, width: logoWidth);
}