Axi4DataChannelMonitor constructor

Axi4DataChannelMonitor({
  1. required Axi4SystemInterface sIntf,
  2. required Axi4DataChannelInterface rIntf,
  3. required Component parent,
  4. String name = 'axi4DataChannelMonitor',
})

Creates a new Axi4DataChannelMonitor on rIntf.

Implementation

Axi4DataChannelMonitor(
    {required this.sIntf,
    required this.rIntf,
    required Component parent,
    String name = 'axi4DataChannelMonitor'})
    : super(name, parent) {
  isWr = rIntf is Axi4BaseWChannelInterface;
  isRd = rIntf is Axi4BaseRChannelInterface;
}