toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final environment = this.environment;
  final id = this.id;
  final matrixId = this.matrixId;
  final projectId = this.projectId;
  final shard = this.shard;
  final state = this.state;
  final testDetails = this.testDetails;
  final testSpecification = this.testSpecification;
  final timestamp = this.timestamp;
  final toolResultsStep = this.toolResultsStep;
  return {
    'environment': ?environment,
    'id': ?id,
    'matrixId': ?matrixId,
    'projectId': ?projectId,
    'shard': ?shard,
    'state': ?state,
    'testDetails': ?testDetails,
    'testSpecification': ?testSpecification,
    'timestamp': ?timestamp,
    'toolResultsStep': ?toolResultsStep,
  };
}