LicenseInfo.fromJson constructor
Implementation
factory LicenseInfo.fromJson(Map<String, dynamic> json) {
return LicenseInfo(
parseMode(json['mode']),
json.containsKey(('expiration'))
? DateTime.parse(json['expiration'])
: null,
json['companyName']);
}