SmsMessage constructor

const SmsMessage({
  1. required String id,
  2. required String address,
  3. required String body,
  4. required DateTime date,
  5. required DateTime dateSent,
  6. required SmsType type,
  7. required bool read,
})

Implementation

const SmsMessage({
  required this.id,
  required this.address,
  required this.body,
  required this.date,
  required this.dateSent,
  required this.type,
  required this.read,
});