toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final creationTime = this.creationTime;
  final displayName = this.displayName;
  final lastTestResult = this.lastTestResult;
  final name = this.name;
  final notes = this.notes;
  final tags = this.tags;
  final testCaseConversationTurns = this.testCaseConversationTurns;
  final testConfig = this.testConfig;
  return {
    'creationTime': ?creationTime,
    'displayName': ?displayName,
    'lastTestResult': ?lastTestResult,
    'name': ?name,
    'notes': ?notes,
    'tags': ?tags,
    'testCaseConversationTurns': ?testCaseConversationTurns,
    'testConfig': ?testConfig,
  };
}