SmsMessage constructor
SmsMessage({})
Implementation
SmsMessage({
required String address,
required String body,
required int id,
int? threadId,
bool? read,
DateTime? date,
DateTime? dateSent,
SmsMessageKind? kind,
}) : _id = id,
_address = address,
_body = body,
_threadId = threadId,
_read = read,
_date = date,
_dateSent = dateSent,
_kind = kind;