FaketoothDescriptor constructor

const FaketoothDescriptor({
  1. required String uuid,
  2. dynamic initialValue,
  3. Future valueProducer()?,
  4. void valueHandler(
    1. dynamic
    )?,
})

Creates a new instance of FaketoothDescriptor.

The uuid parameter is required, while the valueProducer, valueHandler, and initialValue parameters are optional.

Implementation

const FaketoothDescriptor({
  required this.uuid,
  this.initialValue,
  this.valueProducer,
  this.valueHandler,
});