RelayAgentAuthResult.fromJson constructor
Implementation
factory RelayAgentAuthResult.fromJson(Map<String, dynamic> json) => RelayAgentAuthResult(
success: (json['Success'] as bool?) ?? false,
publicHost: (json['PublicHost'] as String?) ?? '',
heartbeatIntervalSeconds: (json['HeartbeatIntervalSeconds'] as num?)?.toDouble() ?? 0.0,
);