defaultLabels constant

Map<MoonPhaseName, String> const defaultLabels

Default English labels, used as fallback when MoonWidget.phaseLabels is not provided.

Implementation

static const Map<MoonPhaseName, String> defaultLabels = {
  MoonPhaseName.newMoon: 'New Moon',
  MoonPhaseName.waxingCrescent: 'Waxing Crescent',
  MoonPhaseName.firstQuarter: 'First Quarter',
  MoonPhaseName.waxingGibbous: 'Waxing Gibbous',
  MoonPhaseName.fullMoon: 'Full Moon',
  MoonPhaseName.waningGibbous: 'Waning Gibbous',
  MoonPhaseName.lastQuarter: 'Last Quarter',
  MoonPhaseName.waningCrescent: 'Waning Crescent',
};