AwareSensor constructor

AwareSensor(
  1. AwareSensorConfig? config
)

Initializer for AWARE Sensor You can initialize an AwareSensor Instance with an AwareSensorConfiguration instance. If the configuration parameter is null, the initializer uses the default setting.

Implementation

AwareSensor(this.config) {
  if (this.config == null) {
    this.config = AwareSensorConfig();
  }
}