copyWith method

PostCommentComponentLoaded copyWith({
  1. PostCommentModel? copyThis,
})

Implementation

PostCommentComponentLoaded copyWith({PostCommentModel? copyThis}) {
  return PostCommentComponentLoaded(value: copyThis ?? value);
}