CustomFieldContext.fromJson constructor
Implementation
factory CustomFieldContext.fromJson(Map<String, Object?> json) {
return CustomFieldContext(
description: json[r'description'] as String? ?? '',
id: json[r'id'] as String? ?? '',
isAnyIssueType: json[r'isAnyIssueType'] as bool? ?? false,
isGlobalContext: json[r'isGlobalContext'] as bool? ?? false,
name: json[r'name'] as String? ?? '',
);
}