copyWith method

CustomFieldContextProjectMapping copyWith({
  1. String? contextId,
  2. bool? isGlobalContext,
  3. String? projectId,
})

Implementation

CustomFieldContextProjectMapping copyWith(
    {String? contextId, bool? isGlobalContext, String? projectId}) {
  return CustomFieldContextProjectMapping(
    contextId: contextId ?? this.contextId,
    isGlobalContext: isGlobalContext ?? this.isGlobalContext,
    projectId: projectId ?? this.projectId,
  );
}