icon_large5 method

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

Implementation

double icon_large5({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["large"]!
            : getPageDynamicIconSizes(pageName, SizeType.large)) *
        _totalSize;
  } else {
    return pageName == null
        ? _staticSizes["large"]!
        : getPageStaticIconSized(pageName, SizeType.large);
  }
}