operator [] method

dynamic operator [](
  1. Object field
)

Gets a nested field by String or FieldPath from the snapshot.

Data can be accessed by providing a dot-notated path or FieldPath which recursively finds the specified data. If no data could be found at the specified path, a StateError will be thrown.

Implementation

dynamic operator [](Object field) => get(field);