showLoading static method
Implementation
static Function showLoading(
BuildContext context, {
String? msg,
Color? bgColor,
Color? textColor,
double pdHorizontal = 20,
double pdVertical = 10,
double textSize = 14,
}) {
return _showToast(
context,
msg: msg,
bgColor: bgColor,
textColor: textColor,
textSize: textSize,
pdHorizontal: pdHorizontal,
pdVertical: pdVertical,
type: VxToastType.loading,
);
}