toJson method

Map<String, dynamic> toJson()

Implementation

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