TalsecConfig constructor

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

Configuration for TalsecConfig.

Implementation

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