buildClientLogo static method
Implementation
static Widget buildClientLogo(int clientType, {double height = 48.0, double width = 100.0}) {
final url = getDynamicClientLogoUrl(clientType);
return isSvgLogo(clientType)
? AppSVGNetwork(url, height: height, width: width)
: AppImageNetwork(url, height: height, width: width);
}