I also found SCREAMING_CAPSand UpperCamelCase styles in constant names in ble_error.dart, so I also fixed it by applying the style preferred by Dart. Reference: PREFER using lowerCamelCase for constant names.
There was a naming inconsistency for a parameter holding the value of a characteristic. In some places it was named bytes. I renamed it to value wherever I found it.
In some places there was a different capitalization for the
UUID
part of names. This PR capitalizes allUUID
s like regular words -Uuid
, except strings and comments. Reference: DO capitalize acronyms and abbreviations longer than two letters like words.I also found
SCREAMING_CAPS
andUpperCamelCase
styles in constant names inble_error.dart
, so I also fixed it by applying the style preferred by Dart. Reference: PREFER using lowerCamelCase for constant names.There was a naming inconsistency for a parameter holding the value of a characteristic. In some places it was named
bytes
. I renamed it tovalue
wherever I found it.