connectivityIndicatorExample method

Widget connectivityIndicatorExample()

Implementation

Widget connectivityIndicatorExample(){
  return Container(
    child: Center(
      child: Text("Not Connected to the internel"),
    ),
  );
}