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())
recent → const LogOption<Duration>
const LogOption(DurationOption(argName: 'recent', argAbbrev: 'r', argPos: 0, helpText: 'Fetch records from the recent period length; s (seconds) by default. ' 'Can also be …
before → const LogOption<DateTime>
const LogOption(DateTimeOption(argName: 'before', helpText: 'Fetch records from before this timestamp.'))
after → const LogOption<DateTime>
const LogOption(DateTimeOption(argName: 'after', helpText: 'Fetch records from after this timestamp.'))
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.