toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final action = this.action;
  final containerImage = this.containerImage;
  final createTime = this.createTime;
  final framework = this.framework;
  final snapshot = this.snapshot;
  final state = this.state;
  final targetVersion = this.targetVersion;
  final version = this.version;
  final vmImage = this.vmImage;
  return {
    'action': ?action,
    'containerImage': ?containerImage,
    'createTime': ?createTime,
    'framework': ?framework,
    'snapshot': ?snapshot,
    'state': ?state,
    'targetVersion': ?targetVersion,
    'version': ?version,
    'vmImage': ?vmImage,
  };
}