TrustdeviceSePlugin constructor

TrustdeviceSePlugin([
  1. dynamic behaviorCollector
])

构造方法 - 传入行为采集插件实例 如果不需要行为采集,可以不传

Implementation

factory TrustdeviceSePlugin([dynamic behaviorCollector]) {
  if (behaviorCollector != null) {
    _instance._behaviorCollector = behaviorCollector;
  }
  return _instance;
}