copyWith method

PostComponentLoaded copyWith({
  1. PostModel? copyThis,
})

Implementation

PostComponentLoaded copyWith({PostModel? copyThis}) {
  return PostComponentLoaded(value: copyThis ?? value);
}