clone method
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(),
);
Creates a copy of this packet.
Axi5WChannelPacket clone() => Axi5WChannelPacket(
data: data.map((e) => e.clone()).toList(),
tag: tag?.clone(),
debug: debug?.clone(),
user: user?.clone(),
);