Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,18 @@ flutter pub add pusher_beams

In order to initialize Pusher Beams, you already have initialized Firebase ([FlutterFire](https://firebase.flutter.dev/)), now you can initialize Pusher Beams using the `start` method as soon as possible (Preferable inside the `main` function).
```dart
import 'package:pusher_beams/pusher_beams.dart';

void main() async {
// Some initial code
// Maybe the firebase initialization...

// Example Firebase initialization
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);

// PusherBeams initialization
await PusherBeams.instance.start('YOUR INSTANCE ID');
}
```
Expand Down