flutter pull up to refetch data from api
问题 I want to use Refresh indicator so that when you pull up the page you are in right now rebuilds i will share with you my code i have tried many times but really i can't find a straight way around it here is my code class Companies { final int id; final String name; final String companyLogo; Companies({this.id, this.name, this.companyLogo}); factory Companies.fromJson(Map<String, dynamic> json) { return Companies( id: json['id'], name: json['name'], companyLogo: json['company_logo'], ); } }