toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final errors = this.errors;
  final inspectJob = this.inspectJob;
  final lastRunTime = this.lastRunTime;
  final name = this.name;
  final status = this.status;
  final triggers = this.triggers;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'errors': ?errors,
    'inspectJob': ?inspectJob,
    'lastRunTime': ?lastRunTime,
    'name': ?name,
    'status': ?status,
    'triggers': ?triggers,
    'updateTime': ?updateTime,
  };
}