showLoading method

dynamic showLoading({
  1. bool blurBG = true,
  2. String? msg,
})

Implementation

showLoading({bool blurBG = true, String? msg}) {
  params.value = params.value.copyWith(
    visible: true,
    hasBlurBackground: blurBG,
    message: msg,
  );
}