CustomFieldContextProjectMapping.fromJson constructor
Implementation
factory CustomFieldContextProjectMapping.fromJson(Map<String, Object?> json) {
return CustomFieldContextProjectMapping(
contextId: json[r'contextId'] as String? ?? '',
isGlobalContext: json[r'isGlobalContext'] as bool? ?? false,
projectId: json[r'projectId'] as String?,
);
}