IndustryRank.fromJson constructor

IndustryRank.fromJson(
  1. Map<String, dynamic> json
)

Implementation

IndustryRank.fromJson(Map<String, dynamic> json) {
  pos = json['pos']?.toInt();
  total = json['total']?.toInt();
}