clone method

Axi5WChannelPacket clone()

Creates a copy of this packet.

Implementation

Axi5WChannelPacket clone() => Axi5WChannelPacket(
      data: data.map((e) => e.clone()).toList(),
      tag: tag?.clone(),
      debug: debug?.clone(),
      user: user?.clone(),
    );