addRefreshIndicator method

Widget addRefreshIndicator(
  1. Future<void> onRefresh(),
  2. BuildContext context
)

Implementation

Widget addRefreshIndicator(
    Future<void> Function() onRefresh, BuildContext context) {
  return RefreshIndicator(
      color: Theme.of(context).primaryColor,
      child: this,
      onRefresh: onRefresh);
}