AtContactsImpl constructor

AtContactsImpl(
  1. AtClient? atClient,
  2. String atSign, {
  3. RegexType? regexType,
})

Implementation

AtContactsImpl(AtClient? atClient, String atSign, {RegexType? regexType}) {
  this.atSign = atSign;
  _atClient = atClient as AtClientImpl?;
  _regexType = regexType ?? RegexType.appSpecific;

  logger = AtSignLogger(runtimeType.toString());
}