getPrintLogLabel function

dynamic getPrintLogLabel()

Implementation

getPrintLogLabel() {
  final logsByLanguage = {
    Languages.english: enPrintLogLabel,
    Languages.hindi: hiPrintLogLabel,
    Languages.arabic: arPrintLogLabel,
  };

  return logsByLanguage[MenstrualCycleWidget.currentLanguage];
}