toString method

  1. @override
String toString()
override

Returns a string representation of the BleService instance.

This includes the UUID of the service and a detailed list of its characteristics, showcasing their UUIDs, properties, and permissions.

Implementation

@override
String toString() {
  return 'BleService(serviceUuid: $serviceUuid, characteristics: $characteristics)';
}