CustomFieldContextDefaultValueProject.fromJson constructor

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

Implementation

factory CustomFieldContextDefaultValueProject.fromJson(
    Map<String, Object?> json) {
  return CustomFieldContextDefaultValueProject(
    contextId: json[r'contextId'] as String? ?? '',
    projectId: json[r'projectId'] as String? ?? '',
    type: json[r'type'] as String? ?? '',
  );
}