IndigeneInfo.fromJson constructor

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

Implementation

factory IndigeneInfo.fromJson(Map<String, dynamic> json) {
  return IndigeneInfo(
    countryOfBirth: json['country_of_birth'],
  );
}