get method

Gun get(
  1. String sub
)

Returns a the node at the given sub.

Implementation

Gun get(String sub) {
  final gun = _gun.get(sub);
  return Gun._(gun);
}