copyWith method

PostLikeComponentLoaded copyWith({
  1. PostLikeModel? copyThis,
})

Implementation

PostLikeComponentLoaded copyWith({PostLikeModel? copyThis}) {
  return PostLikeComponentLoaded(value: copyThis ?? value);
}