NodeKey.fromFullKey constructor

NodeKey.fromFullKey(
  1. String fullKey
)

Implementation

NodeKey.fromFullKey(String fullKey)
    : path = List.from(
          fullKey.trim().split('/').map((e) => e.trim()).toList(),
          growable: false);