serialize method
Serializes information the current object
writer Serialization writer to use to serialize this model
Implementation
@override
void serialize(SerializationWriter writer) {
writer.writeIntValue('email_sent_at', emailSentAt);
writer.writeStringValue('email_sent_to', emailSentTo);
writer.writeAdditionalData(additionalData);
}