toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'sourceCodeLocation': sourceCodeLocation.toJson(),
    'styleSheetLoadingIssueReason': styleSheetLoadingIssueReason.toJson(),
    if (failedRequestInfo != null)
      'failedRequestInfo': failedRequestInfo!.toJson(),
  };
}