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