apps top-level property

List<App> apps

A (read-only) array of all the initialized Apps.

See: firebase.google.com/docs/reference/js/firebase#.apps.

Implementation

List<App> get apps => firebase.apps
    // explicitly typing the param as dynamic to work-around
    // https://github.com/dart-lang/sdk/issues/33537
    // ignore: unnecessary_lambdas
    .map((dynamic e) => App.getInstance(e))
    .toList();