info method

Getting info about account project

Implementation

Future<ProjectEntity> info() async {
  return ProjectEntity.fromJson(
    await resolveStreamedResponse(
      createRequest(
        'GET',
        buildUri('$apiUrl/project/'),
      ).send(),
    ),
  );
}