updateBlogResponseToEntity static method

UpdateBlog updateBlogResponseToEntity(
  1. UpdateBlogResponse response
)

Implementation

static domain.UpdateBlog updateBlogResponseToEntity(infra.UpdateBlogResponse response) => domain.UpdateBlog(
  ok: response.ok,
  message: response.message,
  executionError: response.executionError,
);