LicenseQrCode.fromJson constructor

LicenseQrCode.fromJson(
  1. dynamic json
)

Implementation

LicenseQrCode.fromJson(dynamic json) {
  lic = json['lic'] != null ? License.fromJson(json['lic']) : null;
}