ContextDevice constructor

ContextDevice(
  1. String manufacturer,
  2. String model,
  3. String name,
  4. String type, {
  5. String? id,
  6. bool? adTrackingEnabled,
  7. String? advertisingId,
  8. String? token,
  9. String? trackingStatus,
  10. Map<String, dynamic>? custom,
})

Implementation

ContextDevice(this.manufacturer, this.model, this.name, this.type,
    {this.id,
    this.adTrackingEnabled,
    this.advertisingId,
    this.token,
    this.trackingStatus,
    Map<String, dynamic>? custom})
    : super(custom: custom);