Axi5StreamPacket constructor

Axi5StreamPacket({
  1. required BigInt data,
  2. int? strb,
  3. bool? last,
  4. int? keep,
  5. int? user,
  6. int? id,
  7. int? dest,
  8. bool? wakeup,
})

Creates a new packet.

Implementation

Axi5StreamPacket({
  required this.data,
  this.strb,
  this.last,
  this.keep,
  this.user,
  this.id,
  this.dest,
  this.wakeup,
});