toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deploymentState = this.deploymentState;
  final errors = this.errors;
  final version = this.version;
  return {
    'deploymentState': ?deploymentState,
    'errors': ?errors,
    'version': ?version,
  };
}