get method

User get(
  1. String sub
)

Returns the information present on the sub node.

Implementation

User get(String sub) {
  final user = _user.get(sub);
  return User._(user);
}