ScheduledUserMessageCreateParams constructor

ScheduledUserMessageCreateParams(
  1. {required String message,
  2. required int scheduledAt,
  3. String? customType,
  4. String? data,
  5. MentionType mentionType = MentionType.users,
  6. List<String>? mentionedUserIds,
  7. List<MessageMetaArray>? metaArrays,
  8. AppleCriticalAlertOptions? appleCriticalAlertOptions,
  9. PushNotificationDeliveryOption pushNotificationDeliveryOption = PushNotificationDeliveryOption.normal,
  10. List<String>? translationTargetLanguages}
)

Implementation

ScheduledUserMessageCreateParams({
  required this.message,
  required this.scheduledAt,
  this.customType,
  this.data,
  this.mentionType = MentionType.users,
  this.mentionedUserIds,
  this.metaArrays,
  this.appleCriticalAlertOptions,
  this.pushNotificationDeliveryOption = PushNotificationDeliveryOption.normal,
  this.translationTargetLanguages,
});