menu
prayer_time package
documentation
prayer_time.dart
PrayTime
twoDigitsFormat method
twoDigitsFormat method
dark_mode
light_mode
twoDigitsFormat
method
String
twoDigitsFormat
(
int
num
)
Implementation
String twoDigitsFormat(int num) { return (num < 10) ? '0$num' : '$num'; }
prayer_time package
documentation
prayer_time
PrayTime
twoDigitsFormat method
PrayTime class