LocalNotificationScheduleModel constructor

const LocalNotificationScheduleModel({
  1. int? id,
  2. @Default(ModelTimestamp()) ModelTimestamp time,
  3. @Default(LocalNotificationRepeatSettings.none) LocalNotificationRepeatSettings repeat,
  4. @Default("") String title,
  5. @Default("") String text,
  6. @Default({}) DynamicMap data,
})

Model for scheduling and registering local PUSH notifications.

Specify the date and time to send the notification in time.

Specify the title of the notification in title. Specify the body of the notification in text.

ローカルPUSH通知をスケジュールして登録するためのモデルです。

timeに通知を送信する日時を指定します。

titleに通知のタイトルを指定します。textに通知の本文を指定します。

Implementation

const factory LocalNotificationScheduleModel({
  int? id,
  @Default(ModelTimestamp()) ModelTimestamp time,
  @Default(LocalNotificationRepeatSettings.none)
  LocalNotificationRepeatSettings repeat,
  @Default("") String title,
  @Default("") String text,
  @Default({}) DynamicMap data,
}) = _LocalNotificationScheduleModel;