Axi5StreamMonitor constructor

Axi5StreamMonitor({
  1. required Axi5SystemInterface sys,
  2. required Axi5StreamInterface strm,
  3. required Component parent,
  4. String name = 'axi5StreamMonitor',
})

Creates a new Axi5StreamMonitor on strm.

Implementation

Axi5StreamMonitor(
    {required this.sys,
    required this.strm,
    required Component parent,
    String name = 'axi5StreamMonitor'})
    : super(name, parent);