There are some inconsistencies between how properties access scryfallData, where some of them use direct key access (scryfallData['value']) and using a getter (scryfallData.get('value'). It should really be one or the other, and we should consider the implications of each method.
There are some inconsistencies between how properties access
scryfallData, where some of them use direct key access (scryfallData['value']) and using a getter (scryfallData.get('value'). It should really be one or the other, and we should consider the implications of each method.