AxiAddressRange constructor

AxiAddressRange({
  1. required LogicValue start,
  2. required LogicValue end,
  3. bool isSecure = false,
  4. bool isPrivileged = false,
})

Constructor.

Implementation

AxiAddressRange(
    {required this.start,
    required this.end,
    this.isSecure = false,
    this.isPrivileged = false});