getNonNullableMap<T> method

Map<String, T> getNonNullableMap<T>(
  1. String path, {
  2. String? format,
})

Gets and converts the value at path to type Map<String,T>

Implementation

Map<String, T> getNonNullableMap<T>(String path, {String? format}) =>
    _snapshot.child(path).asNonNullableMap(format: format);