showTimers static method
void
showTimers()
Shows the timers.
Opens the default clock app showing timers.
Implementation
static void showTimers() {
try {
if (Platform.isAndroid) {
_channel.invokeMethod('showTimers');
} else {
throw UnimplementedError();
}
} on PlatformException {
debugPrint('Error showing timers.');
}
}