IssueTypeToContextMapping.fromJson constructor

IssueTypeToContextMapping.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory IssueTypeToContextMapping.fromJson(Map<String, Object?> json) {
  return IssueTypeToContextMapping(
    contextId: json[r'contextId'] as String? ?? '',
    isAnyIssueType: json[r'isAnyIssueType'] as bool? ?? false,
    issueTypeId: json[r'issueTypeId'] as String?,
  );
}