nixrajput/video-calling-app-flutter

constants/secrets.dart file doesn't exists

Labib-Ahmed-1604065 opened this issue · 2 comments

I tried to run the code by myself, but channel_controller.dart file requires secrets.dart file. Please add the file.

  1. Make secrets.dart file in constants folder.
  2. Then add below code to the file.
  3. Provide your Agora ID and Certificate.
abstract class AppSecrets {
  static const appId = "YOUR_APP_ID";
  static const certificate = "YOUR _APP_CERTIFICATE";
}

Thanks a lot.