easyLoader property
      
      void
      get
      easyLoader
      
    
    
Loader at the center of the screen
Implementation
void get easyLoader {
  showDialog(
    context: context,
    barrierDismissible: false,
    builder: (context) {
      return CircularProgressIndicator().alignC;
    },
  );
}