SpotCheck constructor
SpotCheck({})
Implementation
SpotCheck(
{Key? key,
required this.targetToken,
required this.domainName,
required this.userDetails,
this.variables = const {},
this.customProperties = const {},
this.sparrowLang = ""})
: super(key: key) {
spotCheckState = SpotCheckState(
targetToken: targetToken,
domainName: domainName,
userDetails: userDetails,
variables: variables,
customProperties: customProperties,
sparrowLang: sparrowLang,
);
}