getValues method

  1. @override
Future<Map<String, NodeValue>> getValues()
override

Get a deep copy of all values stored in the node.

@return a map of all values

Implementation

@override
Future<Map<String, NodeValue>> getValues() async {
  await _init();
  return Map.from(_values);
}