sync method

Future<List<DroneRepo>> sync()

POST /api/user/repos

Implementation

Future<List<DroneRepo>> sync() async {
  return await _dioService.request<DroneRepo, List<DroneRepo>>(
    path: Uri(
      path: '/api/user/repos',
    ),
    method: HttpMethod.post,
  );
}