TextMessage constructor

TextMessage({
  1. int? id,
  2. String? address,
  3. String? body,
  4. int? size,
  5. bool? read,
  6. DateTime? date,
  7. DateTime? dateSent,
  8. SmsType? type,
  9. SmsStatus? status,
})

Implementation

TextMessage(
    {this.id,
    this.address,
    this.body,
    this.size,
    this.read,
    this.date,
    this.dateSent,
    this.type,
    this.status})
    : super();