toString method

  1. @override
String toString()
override

Returns a string representation of this characteristic in a format that contains all its properties and Service.

Implementation

@override
String toString() {
  return 'Characteristic{service: $service,'
      ' _manager: $_manager,'
      ' uuid: $uuid,'
      ' isReadable: $isReadable,'
      ' isWritableWithResponse: $isWritableWithResponse,'
      ' isWritableWithoutResponse: $isWritableWithoutResponse,'
      ' isNotifiable: $isNotifiable,'
      ' isIndicatable: $isIndicatable}';
}