toSmsMessage method
Converts this conversation message to a regular SmsMessage Useful when you need to treat it as a standard SMS message
Implementation
SmsMessage toSmsMessage() {
return SmsMessage(
id: id,
address: address,
body: body,
date: date,
dateSent: dateSent,
type: type,
read: read,
);
}