License constructor

License(
  1. ValidatedDocuments _documents,
  2. LicenseValidation _validation,
  3. LicensesRepository _licenses,
  4. DeviceService _device,
  5. NetworkService _network,
  6. LcpClient _lcpClient,
)

Implementation

License(this._documents, this._validation, this._licenses, this._device,
    this._network, this._lcpClient) {
  _validation.observe(_validation, (documents, _) {
    if (documents != null) {
      _documents = documents;
    }
  });
}