include method

void include (String key)

Include nested {@link ParseObject}s for the provided key.

You can use dot notation to specify which fields in the included object that are also fetched.

Implementation

void include(String key) {
  _includes.add(key);
}