X3DHKey.fromJson constructor

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

Implementation

factory X3DHKey.fromJson(Map<String, dynamic> json) => X3DHKey(
      hexStr: json['hexStr'],
      bytes: json['bytes'],
    );