pusher / docs

The all new Pusher docs, powered by @11ty and @vercel
https://pusher.com/docs
8 stars 15 forks source link

Pusher Channels Docs | Flutter Quick Start Guidepage #335

Open bulgariamitko opened 3 months ago

bulgariamitko commented 3 months ago

Hello there, I spotted an issue on https://pusher.com/docs/channels/getting_started/flutter/

I think this code is wrong

final myChannel = await pusher.subscribe( channelName: "my-channel" onEvent: onEvent );

it needs to be like that final myChannel = await pusher.subscribe( channelName: "my-channel", onEvent: onEvent );