MimeRecord constructor
Constructs a MimeRecord with optional decodedType, payload, and id.
Implementation
MimeRecord({String? decodedType, super.payload, super.id}) {
if (decodedType != null) {
this.decodedType = decodedType;
}
}
Constructs a MimeRecord with optional decodedType, payload, and id.
MimeRecord({String? decodedType, super.payload, super.id}) {
if (decodedType != null) {
this.decodedType = decodedType;
}
}