PageDLLData class

A not-really-doubly-linked-list-kind-of representation that is used to help ensure that the next page that is pushed is the correct one.

Constructors

PageDLLData({PageDLLData? previousPage, required Widget widget, PageDLLData? nextPage})

Properties

hashCode int
The hash code for this object.
no setterinherited
nextPage PageDLLData?
getter/setter pair
previousPage PageDLLData?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
widget Widget
The page tied to this DLL.
final

Methods

getTraversalSteps(PageDLLTraversalDirection direction, [PageDLLData? pageDLLData, dynamic i = 0]) int
isFirstPage() bool
isLastPage() bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setAsNext(PageDLLData nextPage) → void
setAsPrevious(PageDLLData previousPage) → void
toString() String
A string representation of this object.
inherited

Operators

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