icon_small5 method

double icon_small5({
  1. String? pageName,
  2. bool? isStatic,
})

Implementation

double icon_small5({String? pageName, bool? isStatic}) {
  if ((isStatic == null &&
          isStaticDefault == null &&
          Get.find<AppSettings>().properties.screenMode ==
              ScreenMode.mobile) ||
      (isStatic == null && isStaticDefault == false) ||
      isStatic == false) {
    return (pageName == null
            ? _sizeIconRatios["small"]!
            : getPageDynamicIconSizes(pageName, SizeType.small)) *
        _totalSize;
  } else {
    return pageName == null
        ? _staticSizes["small"]!
        : getPageStaticIconSized(pageName, SizeType.small);
  }
}