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