Axi4StreamMonitor constructor

Axi4StreamMonitor({
  1. required Axi4SystemInterface sIntf,
  2. required Axi4StreamInterface rIntf,
  3. required Component parent,
  4. String name = 'axi4StreamMonitor',
})

Creates a new Axi4StreamMonitor on rIntf.

Implementation

Axi4StreamMonitor(
    {required this.sIntf,
    required this.rIntf,
    required Component parent,
    String name = 'axi4StreamMonitor'})
    : super(name, parent);