getOneLoading function

dynamic getOneLoading({
  1. Color color = Colors.white,
  2. double size = 20,
})

Implementation

getOneLoading({Color color = Colors.white, double size = 20}) {
  return Center(
    child: LoadingAnimationWidget.threeRotatingDots(
      color: Colors.black,
      size: size,
    ),
  );
}