onlyOnline method

Widget onlyOnline()

Only shows the widget when online, otherwise shows nothing.

Implementation

Widget onlyOnline() {
  return Connective(onNone: const SizedBox.shrink(), child: this);
}