TalsecConfig constructor

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

Implementation

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