categoriesGetPost abstract method

  1. @Post.new(path: '/categories/get')
Future<Response<CategoriesGetResponse>> categoriesGetPost({
  1. @Body.new() required CategoriesGetRequest? body,
})

Get Categories

Implementation

@Post(path: '/categories/get')
Future<chopper.Response<CategoriesGetResponse>> categoriesGetPost(
    {@Body() required CategoriesGetRequest? body});