isPacketComplete property

bool get isPacketComplete

Implementation

bool get isPacketComplete => switch (packetLengthOrNull) {
  int value => (length >= value),
  null => false,
};