institutionsGetByIdPost abstract method

  1. @Post.new(path: '/institutions/get_by_id')
Future<Response<InstitutionsGetByIdResponse>> institutionsGetByIdPost({
  1. @Body.new() required InstitutionsGetByIdRequest? body,
})

Get details of an institution

Implementation

@Post(path: '/institutions/get_by_id')
Future<chopper.Response<InstitutionsGetByIdResponse>> institutionsGetByIdPost(
    {@Body() required InstitutionsGetByIdRequest? body});