VoiceSignalPresence.fromJson constructor
Implementation
factory VoiceSignalPresence.fromJson(Map<String, dynamic> json) => VoiceSignalPresence(
member: json['member'] as String,
state: VoicePresence.fromWire(json['state'] as String),
kind: json['kind'] == null ? null : VoiceToggle.fromWire(json['kind'] as String),
role: json['role'] == null ? null : VoiceRole.fromWire(json['role'] as String),
);