PermissionsAll.fromJson constructor

PermissionsAll.fromJson(
  1. dynamic json
)

Implementation

PermissionsAll.fromJson(dynamic json) {
  _career = json['career'] != null ? Career.fromJson(json['career']) : null;
  _projectInquiry = json['project_inquiry'] != null ? ProjectInquiry.fromJson(json['project_inquiry']) : null;
  _vendor = json['vendor'] != null ? Vendor.fromJson(json['vendor']) : null;
  _redevelopment = json['redevelopment'] != null ? Redevelopment.fromJson(json['redevelopment']) : null;
  _contact = json['contact'] != null ? Contact.fromJson(json['contact']) : null;
}