From 19727798a8dcfde103665eb8209b714e49327a11 Mon Sep 17 00:00:00 2001 From: Russell Wheatley Date: Wed, 30 Mar 2022 10:51:24 +0100 Subject: [PATCH] docs(firebase_core): Update inline code documentation for initializing Firebase app. (#8329) Co-authored-by: Mike Diarmid --- packages/firebase_core/firebase_core/lib/src/firebase.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/firebase_core/firebase_core/lib/src/firebase.dart b/packages/firebase_core/firebase_core/lib/src/firebase.dart index 2e006da4b679..07cef3283f68 100644 --- a/packages/firebase_core/firebase_core/lib/src/firebase.dart +++ b/packages/firebase_core/firebase_core/lib/src/firebase.dart @@ -31,8 +31,8 @@ class Firebase { /// Initializes a new [FirebaseApp] instance by [name] and [options] and returns /// the created app. This method should be called before any usage of FlutterFire plugins. /// - /// The default app instance cannot be initialized here and should be created - /// using the platform Firebase integration. + /// The default app instance can be initialized here simply by passing no "name" as an argument + /// in both Dart & manual initialization flows. static Future initializeApp({ String? name, FirebaseOptions? options,