getLoader function

Widget getLoader({
  1. required bool show,
})

Implementation

Widget getLoader({required bool show}) {
  return show ? const SILPlatformLoader() : const SizedBox();
}