loadingWidget method

Widget loadingWidget()

Implementation

Widget loadingWidget() {
  return const SizedBox(
    width: 70,
    height: 70,
    child: CircularProgressIndicator(
      valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
    ),
  );
}