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