factory Contributor.fromJson(Map<String, dynamic> json) { return Contributor( name: json['Name'] as String?, value: json['Value'] as int?, ); }