getMap<T> method

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

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

Implementation

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