toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final blockingTriggerId = this.blockingTriggerId;
final containerId = this.containerId;
final fingerprint = this.fingerprint;
final firingTriggerId = this.firingTriggerId;
final liveOnly = this.liveOnly;
final name = this.name;
final notes = this.notes;
final parameter = this.parameter;
final parentFolderId = this.parentFolderId;
final paused = this.paused;
final priority = this.priority;
final scheduleEndMs = this.scheduleEndMs;
final scheduleStartMs = this.scheduleStartMs;
final setupTag = this.setupTag;
final tagFiringOption = this.tagFiringOption;
final tagId = this.tagId;
final teardownTag = this.teardownTag;
final type = this.type;
return {
'accountId': ?accountId,
'blockingTriggerId': ?blockingTriggerId,
'containerId': ?containerId,
'fingerprint': ?fingerprint,
'firingTriggerId': ?firingTriggerId,
'liveOnly': ?liveOnly,
'name': ?name,
'notes': ?notes,
'parameter': ?parameter,
'parentFolderId': ?parentFolderId,
'paused': ?paused,
'priority': ?priority,
'scheduleEndMs': ?scheduleEndMs,
'scheduleStartMs': ?scheduleStartMs,
'setupTag': ?setupTag,
'tagFiringOption': ?tagFiringOption,
'tagId': ?tagId,
'teardownTag': ?teardownTag,
'type': ?type,
};
}