frequency

Last updated:

0 purchases

frequency Image
frequency Images
Add to Cart

Description:

frequency

frequency
Utility that calculates frequency based on passed attributes OR based on FHIR resources for healthcare applications. package has no dependency on other packages, uses plain dart code.
example:
Frequency freqObj = Frequency.dynamic("every 8 hours", "Day", 3);
print(freqObj.getNextFreq(DateTime.now()));
Map<String, dynamic> pfhirTiming = {
"frequency": 1,
"period": 4.0,
"periodUnit": "h"
};
String pfhirFreqText = "";
Frequency freqObjFhir =
Frequency.buildFromFHIRRepeat(pfhirTiming, pfhirFreqText);
print(freqObjFhir.getNextFreq(DateTime.now()));
}

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.