Refresh Flutter Text widget content every 5 minutes or periodically
问题 I have a Flutter Text widget and its content is populated from an external REST call.I would like to refresh the widget content periodically every 5 mins by calling the REST endpoint. So far I managed to call the endpoint every 5 mins but unable to update/refresh the widget content with new data from network. class PatientCount { int count; double amount; PatientCount({this.count, this.amount}); PatientCount.fromJson(Map<String, dynamic> map) : count = map['count'], amount = map['amount']; }