GattCharacteristic.fromJson constructor

GattCharacteristic.fromJson(
  1. Map<String, dynamic> json
)

Implementation

GattCharacteristic.fromJson(Map<String, dynamic> json)
    : uuid = json['uuid'].toString(),
      properties = CharacteristicProperties.fromJson(json["properties"]);