dataStructFieldKeysFromNodeId static method

(String, String)? dataStructFieldKeysFromNodeId(
  1. String nodeId
)

Extract the struct and field keys from a data struct field node ID. Returns (structKey, fieldKey) or null if the node ID doesn't match.

Implementation

static (String, String)? dataStructFieldKeysFromNodeId(String nodeId) =>
    _dataStructField.extractKeys(nodeId);