Skip to content

Instantly share code, notes, and snippets.

@namphho
Created May 3, 2021 06:30
Show Gist options
  • Save namphho/7eb5765d9dcc4030a37f93179208e09a to your computer and use it in GitHub Desktop.
Save namphho/7eb5765d9dcc4030a37f93179208e09a to your computer and use it in GitHub Desktop.
example_log
@GET('Search/Deals')
@Http.Headers(<String, dynamic>{KEY_LOGGED_HEADER: "true"})
Future<SearchDealsResp> searchDealsByCompany(
@Query("itemsPerPage") int itemsPerPage,
@Query("pageIndex") int pageIndex,
@Query("companyId") int companyId,
@Queries() Map<String, dynamic> queries);
@GET('Deals/productCategories')
Future<CategoryResp> productCategoriesInCompany(@Query("supplierId") int supplierId);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment