fetchNodeJsonSync method

  1. @override
String? fetchNodeJsonSync(
  1. String soul, {
  2. GraphReadOptions? options,
})
override

Implementation

@override
String? fetchNodeJsonSync(String soul, {GraphReadOptions? options}) {
  if (_box == null || !_box!.isOpen || !_box!.containsKey(soul)) {
    return null;
  }
  return _box!.get(soul) as String?;
}