toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final containerId = this.containerId;
  final disablingTriggerId = this.disablingTriggerId;
  final enablingTriggerId = this.enablingTriggerId;
  final fingerprint = this.fingerprint;
  final name = this.name;
  final notes = this.notes;
  final parameter = this.parameter;
  final parentFolderId = this.parentFolderId;
  final scheduleEndMs = this.scheduleEndMs;
  final scheduleStartMs = this.scheduleStartMs;
  final type = this.type;
  final variableId = this.variableId;
  return {
    'accountId': ?accountId,
    'containerId': ?containerId,
    'disablingTriggerId': ?disablingTriggerId,
    'enablingTriggerId': ?enablingTriggerId,
    'fingerprint': ?fingerprint,
    'name': ?name,
    'notes': ?notes,
    'parameter': ?parameter,
    'parentFolderId': ?parentFolderId,
    'scheduleEndMs': ?scheduleEndMs,
    'scheduleStartMs': ?scheduleStartMs,
    'type': ?type,
    'variableId': ?variableId,
  };
}