month property
      
      Month?
      get
      month
      
    
    
    
Implementation
_i3.Month? get month => switch (_i5.getProperty(
      this,
      'month',
    )) {
      _i2.String name => _i3.Month.values.byName(name),
      _ => null
    };
      
      set
      month
      (Month? value) 
      
    
    
    
Implementation
set month(_i3.Month? value) {
  _i5.setProperty(
    this,
    'month',
    value?.name ?? _i4.undefined,
  );
}