DataDiffUpdate<T> class sealed

Implementers

Constructors

DataDiffUpdate.change({required int position, required T oldData, required T newData})
const
factory
DataDiffUpdate.insert({required int position, required T data})
const
factory
DataDiffUpdate.move({required int from, required int to, required T data})
const
factory
DataDiffUpdate.remove({required int position, required T data})
const
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
when<S>({required S insert(int position, T data), required S remove(int position, T data), required S change(int position, T oldData, T newData), required S move(int from, int to, T data)}) → S
call one of the given callback functions depending on the type of this object.

Operators

operator ==(Object other) bool
The equality operator.
inherited