isCreatedNode static method

bool isCreatedNode(
  1. Map<String, dynamic> node
)

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');
}