Skip to content
/ icd Public

A flutter package that allows programmatic access to the International Classification of Diseases (ICD) API.

License

Notifications You must be signed in to change notification settings

Princewil/icd

Repository files navigation

A flutter package that allows programmatic access to the International Classification of Diseases (ICD) API.

Features

This package allows you to search through the ICD database.

Getting started

First, visit the ICD API website, create or login into your acccount to get your "ClientID" and "ClientSecret" keys.

Usage

  1. Add this package to your pubspec.yaml
  2. Import the package where neccessary
  3. VERY IMPORTANT: Initialize the plugin preferably in the initState of your widget by passing your "ClientID" and "ClientSecret" keys.
ICD().initializeICDAPI(
    clientID:'your clientID',  
    clientScretKey:'your clientSecret',
);
  1. Then you use the "searchICD" callback to search through the ICD Database.
final List<ICDResult> results = ICD().searchICD(keyWord:'your search keyword');

Additional information

  • Visit the ICD API website for more info.
  • Feel free to lay your complaints, bugs or suggestions.
  • If you want any feature, do let me know.

TODO:

To improve on this ReadMe doc.

About

A flutter package that allows programmatic access to the International Classification of Diseases (ICD) API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published