PmPacket constructor

PmPacket({
  1. required String filename,
  2. required String contentType,
  3. required Uint8List data,
})

PmPacket is the media packet.

This packet is part of the packet sent from the server to the device.

Implementation

PmPacket({
  required this.filename,
  required this.contentType,
  required this.data,
}) : super();