ModelUpdateNotification constructor

const ModelUpdateNotification({
  1. required String path,
  2. required String id,
  3. required ModelUpdateNotificationStatus status,
  4. required DynamicMap value,
  5. required bool listen,
  6. required ModelQuery query,
  7. Object? origin,
  8. int? oldIndex,
  9. int? newIndex,
})

This class contains data for change notifications.

変更通知を行う際のデータを格納したクラスです。

Implementation

const ModelUpdateNotification({
  required this.path,
  required this.id,
  required this.status,
  required this.value,
  required this.listen,
  required this.query,
  this.origin,
  this.oldIndex,
  this.newIndex,
});