MimeRecord constructor

MimeRecord({
  1. String? decodedType,
  2. Uint8List? payload,
  3. Uint8List? id,
})

Constructs a MimeRecord with optional decodedType, payload, and id.

Implementation

MimeRecord({String? decodedType, super.payload, super.id}) {
  if (decodedType != null) {
    this.decodedType = decodedType;
  }
}