Axi4StreamPacket constructor

Axi4StreamPacket({
  1. required LogicValue data,
  2. LogicValue? strb,
  3. LogicValue? keep,
  4. LogicValue? user,
  5. LogicValue? id,
  6. LogicValue? dest,
})

Creates a new packet.

Implementation

Axi4StreamPacket({
  required this.data,
  this.strb,
  this.keep,
  this.user,
  this.id,
  this.dest,
});