CustomFieldContextProjectMapping.fromJson constructor

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

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