ignoring static method

bool ignoring(
  1. ExcellentLoadingMaskType? maskType
)

Implementation

static bool ignoring(ExcellentLoadingMaskType? maskType) {
  maskType ??= ExcellentLoading.instance.maskType;
  return ExcellentLoading.instance.userInteractions ??
      (maskType == ExcellentLoadingMaskType.none ? true : false);
}