withLoadingView method

Widget withLoadingView({
  1. Color? bgColor,
  2. Color? txtColor,
  3. Future<void>? func,
})

Implementation

Widget withLoadingView({Color? bgColor, Color? txtColor, Future<void>? func}) {
  return NGASplash.view(this, bgColor: bgColor, txtColor: txtColor, func: func);
}