TalsecConfig constructor
const
TalsecConfig({
- required String? watcherMail,
- AndroidConfig? androidConfig,
- 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',
);