characteristics method

Future<List<Characteristic>> characteristics(
  1. String servicedUuid
)

Returns a list of discovered Characteristics of a Service identified by servicedUuid.

servicedUuid must be specified as characteristics only for that service are returned.

Will result in error if discovery was not done during this connection.

Implementation

Future<List<Characteristic>> characteristics(String servicedUuid) =>
    _manager.characteristics(this, servicedUuid);