Organization.fromJson constructor
Organization.fromJson(
- Map<String, dynamic> json
)
Implementation
factory Organization.fromJson(Map<String, dynamic> json) => Organization(
company: (json['company'] as String?) ?? '',
title: (json['title'] as String?) ?? '',
department: (json['department'] as String?) ?? '',
jobDescription: (json['jobDescription'] as String?) ?? '',
symbol: (json['symbol'] as String?) ?? '',
phoneticName: (json['phoneticName'] as String?) ?? '',
officeLocation: (json['officeLocation'] as String?) ?? '',
);