TalsecConfig constructor

TalsecConfig({
  1. required String watcherMail,
  2. bool isProd = true,
  3. AndroidConfig? androidConfig,
  4. IOSConfig? iosConfig,
})

Configuration for TalsecConfig.

Implementation

TalsecConfig({
  required this.watcherMail,
  this.isProd = true,
  this.androidConfig,
  this.iosConfig,
});