CustomFieldContext.fromJson constructor

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

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? ?? '',
  );
}