Consent constructor

Consent({
  1. bool dataAccess = false,
  2. bool dataProcess = false,
  3. bool cloudProcess = false,
  4. bool toolProcess = false,
})

Implementation

Consent(
    {this.dataAccess: false,
    this.dataProcess: false,
    this.cloudProcess: false,
    this.toolProcess: false});