showInterpretationDialog method

void showInterpretationDialog(
  1. String value
)

Implementation

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