makeRefreshable property

Widget makeRefreshable

Make your any widget refreshable with RefreshIndicator on top

Implementation

Widget get makeRefreshable {
  return Stack(children: [ListView(), this!]);
}