institutionsGetById abstract method

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

Get details of an institution @param body

Implementation

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