EsMessage constructor

EsMessage({
  1. int? id,
  2. String? title,
  3. String? message,
  4. String? icon,
  5. String? url,
  6. String? createdAt,
  7. String? seenAt,
  8. String? clickedAt,
  9. Map<String, dynamic>? data,
})

Implementation

EsMessage(
    {this.id,
    this.title,
    this.message,
    this.icon,
    this.url,
    this.createdAt,
    this.seenAt,
    this.clickedAt,
    this.data});