License constructor
License(
- ValidatedDocuments _documents,
- LicenseValidation _validation,
- LicensesRepository _licenses,
- DeviceService _device,
- NetworkService _network,
- 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;
}
});
}