getNonNullableList<T> method

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

Gets and converts the value at path to type List

Implementation

List<T> getNonNullableList<T>(String path, {String? format}) =>
    _snapshot.child(path).asNonNullableList(format: format);