Licence.fromMap constructor
Implementation
factory Licence.fromMap(Map<String, dynamic> json) => Licence(
licenceCode: json["licence_code"],
companyCode: json["company_code"],
company: json["company"],
allowed: json["allowed"],
);