Licence constructor

Licence({
  1. String? licenceCode,
  2. String? companyCode,
  3. String? company,
  4. bool? allowed,
})

Implementation

Licence({
  this.licenceCode,
  this.companyCode,
  this.company,
  this.allowed,
});