isCreatedNode static method
Checks if the provided node is a 'CreatedNode'.
Parameters:
- node: The node to be checked.
Returns: A boolean indicating whether the node is a 'CreatedNode'.
Implementation
static bool isCreatedNode(Map<String, dynamic> node) {
return node.containsKey('CreatedNode');
}