ListChangeNotification<E> constructor

ListChangeNotification<E>(
  1. E? element,
  2. ListChangeOp op,
  3. int? pos, {
  4. DateTime? time,
})

Implementation

ListChangeNotification(this.element, this.op, this.pos, {DateTime? time})
    : time = time ?? DateTime.now();