showAlarms static method

void showAlarms()

Shows the alarms.

Opens the default clock app showing alarms.

Implementation

static void showAlarms() {
  try {
    if (Platform.isAndroid) {
      _channel.invokeMethod('showAlarms');
    } else {
      throw UnimplementedError();
    }
  } on PlatformException {
    debugPrint('Error showing alarms.');
  }
}