I want to flag my RefreshIndicator with a boolean param.
Is it possible? What is the trick? Because there are no many options...
return RefreshIndicator(
onRefresh: () async {
return Future.value();
},
backgroundColor: Colors.white,
color: Colors.pink,
strokeWidth: 2.75,
child: SingleChildScrollView(...)
)
