constants/secrets.dart file doesn't exists
Labib-Ahmed-1604065 opened this issue · 2 comments
Labib-Ahmed-1604065 commented
I tried to run the code by myself, but channel_controller.dart file requires secrets.dart file. Please add the file.
nixrajput commented
- Make
secrets.dart
file in constants folder. - Then add below code to the file.
- Provide your Agora ID and Certificate.
abstract class AppSecrets {
static const appId = "YOUR_APP_ID";
static const certificate = "YOUR _APP_CERTIFICATE";
}
Labib-Ahmed-1604065 commented
Thanks a lot.