RunList class

A list of runs.

Annotations
  • @immutable

Constructors

RunList({required String object, required List<Run> data, String? firstId, String? lastId, required bool hasMore})
Creates a RunList.
const
RunList.fromJson(Map<String, dynamic> json)
Creates a RunList from JSON.
factory

Properties

data List<Run>
The list of runs.
final
firstId String?
The ID of the first run.
final
hashCode int
The hash code for this object.
no setteroverride
hasMore bool
Whether there are more runs.
final
lastId String?
The ID of the last run.
final
object String
The object type (always "list").
final
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
toJson() Map<String, dynamic>
Converts to JSON.
toString() String
A string representation of this object.
override

Operators

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