I am getting [SA1206](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1206.md) violation warning for the following declaration - ``` public required DateTime? CreatedAt { get; set; } ``` Here the analyzer expecting the `required` keyword before the access modifier which is wrong.