Axi5WriteCluster constructor

Axi5WriteCluster({
  1. required Axi5AwChannelInterface aw,
  2. required Axi5WChannelInterface w,
  3. required Axi5BChannelInterface b,
})

Constructor.

Implementation

Axi5WriteCluster({required this.aw, required this.w, required this.b}) {
  addSubInterface('AW', aw);
  addSubInterface('W', w);
  addSubInterface('B', b);
}