BuglyConfig constructor

BuglyConfig({
  1. required String androidAppId,
  2. required String iosAppId,
  3. String? channel,
  4. bool? debugMode,
})

Implementation

BuglyConfig( {required this.androidAppId, required this.iosAppId, String? channel, bool? debugMode}){
  _isDebug = debugMode ?? false;
  _appChannel = channel ?? "";
}