canonicalAndroidPanel static method
Implementation
static DraftModeUIDateTimePanel canonicalAndroidPanel(
DraftModeUIDateTimePanel panel,
) {
return switch (panel) {
DraftModeUIDateTimePanel.monthYear ||
DraftModeUIDateTimePanel.date =>
DraftModeUIDateTimePanel.date,
DraftModeUIDateTimePanel.time => DraftModeUIDateTimePanel.time,
DraftModeUIDateTimePanel.closed => DraftModeUIDateTimePanel.closed,
};
}