copyWithCompanion method
Implementation
ExtentStomachPostCommentEntity copyWithCompanion(
i1.ExtentStomachPostCommentCompanion data) {
return ExtentStomachPostCommentEntity(
graveManualGuardId: data.graveManualGuardId.present
? data.graveManualGuardId.value
: this.graveManualGuardId,
estateBrickLeafletUser: data.estateBrickLeafletUser.present
? data.estateBrickLeafletUser.value
: this.estateBrickLeafletUser,
outputStageIndirectPost: data.outputStageIndirectPost.present
? data.outputStageIndirectPost.value
: this.outputStageIndirectPost,
outfitNearlyExactContent: data.outfitNearlyExactContent.present
? data.outfitNearlyExactContent.value
: this.outfitNearlyExactContent,
);
}