DiffUpdate class sealed

Implementers

Constructors

DiffUpdate.change({required int position, Object? payload})
const
factory
DiffUpdate.insert({required int position, required int count})
const
factory
DiffUpdate.move({required int from, required int to})
const
factory
DiffUpdate.remove({required int position, required int count})
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<T>({required T insert(int position, int count), required T remove(int position, int count), required T change(int position, Object? payload), required T move(int from, int to)}) → T
call one of the given callback functions depending on the type of this object.

Operators

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