getPreLabelText method
自覚的運動強度のラベルを取得する
Implementation
String? getPreLabelText() {
switch (value) {
case 7:
return '非常に楽である';
case 9:
return 'かなり楽である';
case 11:
return '楽である';
case 13:
return 'ややきつい';
case 15:
return 'きつい';
case 17:
return 'かなりきつい';
case 19:
return '非常にきつい';
default:
return null;
}
}