create static method
return original data json
Implementation
static GmailForwardMessage create({
String? special_type,
String? email_id,
String? from_email_id,
String? message_id,
}) {
GmailForwardMessage gmailForwardMessage = GmailForwardMessage({
"@type": special_type,
"email_id": email_id,
"from_email_id": from_email_id,
"message_id": message_id,
});
return gmailForwardMessage;
}