TriggerUpdate class

A structure used to provide information used to update a trigger. This object updates the previous trigger definition by overwriting it completely.

Constructors

TriggerUpdate({List<Action>? actions, String? description, String? name, Predicate? predicate, String? schedule})

Properties

actions List<Action>?
The actions initiated by this trigger.
final
description String?
A description of this trigger.
final
hashCode int
The hash code for this object.
no setterinherited
name String?
Reserved for future use.
final
predicate Predicate?
The predicate of this trigger, which defines when it will fire.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schedule String?
A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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