Packet6<T, T2, T3, T4, T5, T6> constructor

const Packet6<T, T2, T3, T4, T5, T6>(
  1. T value,
  2. T2 value2,
  3. T3 value3,
  4. T4 value4,
  5. T5 value5,
  6. T6 value6,
)

Wrapper for sending 6 arguments to Backend or Frontend

Implementation

const Packet6(
  this.value,
  this.value2,
  this.value3,
  this.value4,
  this.value5,
  this.value6,
);