showInterpretationDialog method
- String value,
- BuildContext context,
- Test? test
Implementation
void showInterpretationDialog(String value, BuildContext context, Test? test) {
showDialog(
context: context,
builder: (context) {
return InterpretationDialog(
test: test,
value: test!.interpretationType ?? value,
callback: updateCallback);
},
barrierDismissible: false,
);
}