func (prop *Property) SetAfterParse(value interface{}) { current := prop.AsJSON() parsed, err := sjson.Set(current.String(), "#0", value) prop.Set(parsed) fmt.Println(parsed, err) } SetRaw sets the property, but without triggering OnChange
(value interface{})
| 145 | |
| 146 | // SetRaw sets the property, but without triggering OnChange |
| 147 | func (prop *Property) SetRaw(value interface{}) { |
| 148 | prop.data = value |
| 149 | } |
| 150 | |
| 151 | // Contains serializable properties for a Card. |
| 152 | type Properties struct { |
no outgoing calls
no test coverage detected