buildClientLogo static method

Widget buildClientLogo(
  1. int clientType, {
  2. double height = 48.0,
  3. double width = 100.0,
})

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);
}