loading static method
Implementation
static loading({String? status, Color? color, Widget? indicator}) {
if (indicator != null) {
return EasyLoading.show(
status: status ?? 'loading',
indicator: indicator,
);
} else {
return EasyLoading.show(
status: status ?? 'loading',
);
}
}