ProjectService constructor

ProjectService({
  1. required String apiKey,
})

Implementation

ProjectService({required this.apiKey})
    : _dio = Dio(
        BaseOptions(
          baseUrl: 'https://kanbancast.com/api/',
          headers: {
            'Content-Type': 'application/json',
            'x-api-key': apiKey,
          },
        ),
      );