toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final assetSource = this.assetSource;
  final completeTime = this.completeTime;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final executionReport = this.executionReport;
  final labels = this.labels;
  final name = this.name;
  final state = this.state;
  final updateTime = this.updateTime;
  final validationReport = this.validationReport;
  return {
    'assetSource': ?assetSource,
    'completeTime': ?completeTime,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'executionReport': ?executionReport,
    'labels': ?labels,
    'name': ?name,
    'state': ?state,
    'updateTime': ?updateTime,
    'validationReport': ?validationReport,
  };
}