RoomEncryptionContent.fromJson constructor

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

Implementation

RoomEncryptionContent.fromJson(Map<String, Object?> json)
  : algorithm = json.tryGet('algorithm', TryGet.required) ?? '',
    rotationPeriodMs = json.tryGet('rotation_period_ms'),
    rotationPeriodMsgs = json.tryGet('rotation_period_msgs');