toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (commandLineArguments != null)
        'commandLineArguments': commandLineArguments!,
      if (exitCode != null) 'exitCode': exitCode!.toJson(),
      if (toolLogs != null)
        'toolLogs': toolLogs!.map((value) => value.toJson()).toList(),
      if (toolOutputs != null)
        'toolOutputs': toolOutputs!.map((value) => value.toJson()).toList(),
    };