CloudMessage constructor

CloudMessage({
  1. required String title,
  2. DateTime? dateTime,
  3. String? content,
  4. String? url,
  5. String? imageUrl,
  6. Map<String, dynamic>? data,
})

Implementation

CloudMessage({
  required this.title,
  this.dateTime,
  this.content,
  this.url,
  this.imageUrl,
  this.data,
});