Axi4ReadInterface.clone constructor

  1. @Deprecated('Use Instance-based `clone()` instead.')
Axi4ReadInterface.clone(
  1. Axi4ReadInterface other
)

Constructs a new Axi4ReadInterface with identical parameters to other.

Implementation

@Deprecated('Use Instance-based `clone()` instead.')
Axi4ReadInterface.clone(Axi4ReadInterface other)
    : this(
        idWidth: other.idWidth,
        addrWidth: other.addrWidth,
        lenWidth: other.lenWidth,
        dataWidth: other.dataWidth,
        aruserWidth: other.aruserWidth,
        ruserWidth: other.ruserWidth,
        useLock: other.useLock,
        useLast: other.useLast,
      );