get<T> method

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

Gets and converts the value at path to type T

Implementation

T get<T>(String path, {String? format}) =>
    _snapshot.child(path).as(format: format);