get method

  1. @override
dynamic get(
  1. Object field
)
override

Gets a nested field by String or FieldPath from this DocumentSnapshot.

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

@override
dynamic get(Object field) {
  return null;
}