feed method

Future<List<DroneRepo>> feed()

GET /api/user/builds

Implementation

Future<List<DroneRepo>> feed() async {
  return await _dioService.request<DroneRepo, List<DroneRepo>>(
    path: Uri(
      path: '/api/user/builds',
    ),
  );
}