NotificationSendV3Body constructor

const NotificationSendV3Body({
  1. required List<String> tags,
  2. required String message,
  3. required String type,
  4. required Map<String, dynamic> data,
  5. PlatformDTO? platform,
})

Implementation

const NotificationSendV3Body({
  required this.tags,
  required this.message,
  required this.type,
  required this.data,
  this.platform,
});