Licence.fromMap constructor

Licence.fromMap(
  1. Map<String, dynamic> json
)

Implementation

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