onServicesReset property

Stream<void> get onServicesReset
inherited

Services Reset Stream

  • uses the GAP Services Changed characteristic (0x2A05)
  • you must re-call discoverServices() when services are reset

Implementation

Stream<void> get onServicesReset {
  return FlutterBluePlusPlatform.instance.onServicesReset
      .where((p) => p.remoteId == remoteId)
      .map((m) => null);
}