LogOption<V> enum

Inheritance
Available extensions

Values

projectId → const LogOption<String>
const LogOption(ProjectIdOption())
limit → const LogOption<int>
const LogOption(IntOption(argName: 'limit', helpText: 'The maximum number of log records to fetch.', defaultsTo: 50, min: 0))
utc → const LogOption<bool>
const LogOption(UtcOption())
until → const LogOption<DateTime>
const LogOption(DateTimeOrDurationOption(argName: 'until', helpText: 'Fetch records from before this timestamp. Accepts ISO date ' '(e.g. "2024-01-15T10:30:00Z") or relat…
since → const LogOption<DateTime>
const LogOption(DateTimeOrDurationOption(argName: 'since', argPos: 0, helpText: 'Fetch records from after this timestamp. Accepts ISO date ' '(e.g. "2024-01-15T10:30:00Z"…
all → const LogOption<bool>
const LogOption(FlagOption(argName: 'all', helpText: 'Fetch all records (up to specified limit or server limit).', defaultsTo: false, negatable: false, hide: true))
tail → const LogOption<bool>
const LogOption(FlagOption(argName: 'tail', helpText: 'Tail the log and get real time updates.', negatable: false, defaultsTo: false))

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
option → ConfigOptionBase<V>
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
toString() String
A string representation of this object.
inherited

Operators

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

Constants

values → const List<LogOption>
A constant List of the values in this enum, in order of their declaration.