public HandlebarsWriterAttribute(WriterType type, HelperUsage usage, bool passContext, string?name = null)
 {
     Type        = type;
     Name        = name;
     Usage       = usage;
     PassContext = passContext;
 }
 public HandlebarsWriterAttribute(WriterType type, HelperUsage usage, string?name = null) : this(type, usage, false, name)
 {
 }