overlay static method
full screen loader
Implementation
static Widget overlay({String? message}) {
return Container(
color: Colors.black26,
child: Center(
child: LoadingWidget(
message: message,
type: LoadingType.circular,
),
),
);
}