easyLoader property

void easyLoader

Loader at the center of the screen

Implementation

void get easyLoader {
  showDialog(
    context: context,
    barrierDismissible: false,
    builder: (context) {
      return CircularProgressIndicator().alignC;
    },
  );
}