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