QueueSet<T> class

Inheritance

Constructors

QueueSet({ListQueue<T>? queue, int? size})
QueueSet.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
no setter
peek → T
no setter
queue ListQueue<T>
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
size int
getter/setter pair

Methods

add(T t) → void
addAll(Iterable<T> c) → void
clear() → void
contains(Object? o) bool
fromJsonList(List? jsonList) List<QueueSet<T>>?
inherited
fromJsonMap(Map<String, dynamic>? json) QueueSet<T>?
override
fromJsonString(String? json) QueueSet<T>?
inherited
fromJsonStringList(String? jsonStringList) List<QueueSet<T>>?
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
poll() → T
toJson() Map<String, dynamic>
override
toJsonMap() Map<String, dynamic>
inherited
toJsonString() String
inherited
toString() String
This is just to suggest children to implement a named constructor to support creating objects fromJson(...) and fromJsonString(...) as easy as T.build().fromJson(...) or T.build().fromJsonString(...)
inherited

Operators

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