CurrentOrganizationInfo.fromJson constructor

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

Implementation

CurrentOrganizationInfo.fromJson(Map<String, dynamic> json) {
  id = json["ID"];
  acctOrgType = json["AcctOrgType"];
  name = json["Name"];
  functionIds = json["FunctionIds"];
}