list method

Future<List<DroneRepo>> list()

GET /api/user/repos

Implementation

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