MatrixDeviceKeys.fromJson constructor

MatrixDeviceKeys.fromJson(
  1. Map<String, Object?> json
)

Implementation

MatrixDeviceKeys.fromJson(super.json)
    : algorithms = json.tryGetList<String>('algorithms') ?? [],
      deviceId = json['device_id'] as String,
      super.fromJson();