Axi4WriteMonitor constructor

Axi4WriteMonitor({
  1. required Axi4SystemInterface sIntf,
  2. required Axi4WriteInterface wIntf,
  3. required Component parent,
  4. String name = 'axi4WriteMonitor',
})

Creates a new Axi4WriteMonitor on wIntf.

Implementation

Axi4WriteMonitor(
    {required this.sIntf,
    required this.wIntf,
    required Component parent,
    String name = 'axi4WriteMonitor'})
    : super(name, parent);