Properties.fromJson constructor

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

Implementation

factory Properties.fromJson(Map<String, dynamic> json) => Properties(
      broadcast: json["broadcast"],
      read: json["read"],
      writeWithoutResponse: json["writeWithoutResponse"],
      write: json["write"],
      notify: json["notify"],
      indicate: json["indicate"],
      authenticatedSignedWrites: json["authenticatedSignedWrites"],
      reliableWrite: json["reliableWrite"],
      writableAuxiliaries: json["writableAuxiliaries"],
    );