TalsecConfig constructor

TalsecConfig({
  1. AndroidConfig? androidConfig,
  2. IOSconfig? iosConfig,
  3. required String? watcherMail,
})

Implementation

TalsecConfig({
  this.androidConfig,
  this.iosConfig,
  required this.watcherMail,
}) : assert(
(androidConfig != null || iosConfig != null) && watcherMail != null,
        'Configuration for targeted platform and watcherMail has to be provided',
      );