CronJobStatus class

CronJobStatus represents the current state of a cron job.

Constructors

CronJobStatus({List<ObjectReference>? active, DateTime? lastScheduleTime, DateTime? lastSuccessfulTime})
Default constructor.
const
CronJobStatus.fromJson(Map<String, dynamic> json)
Creates a CronJobStatus from JSON data.
factory

Properties

active List<ObjectReference>?
A list of pointers to currently running jobs.
final
hashCode int
The hash code for this object.
no setterinherited
lastScheduleTime DateTime?
Information when was the last time the job was successfully scheduled.
final
lastSuccessfulTime DateTime?
Information when was the last time the job successfully completed.
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, Object>
Converts a CronJobStatus instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

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