ConnectHostFrame constructor
ConnectHostFrame({
- ConnectInvocationEvent? invocationEvent,
- ConnectHeartbeatResponse? heartbeat,
Implementation
factory ConnectHostFrame({
ConnectInvocationEvent? invocationEvent,
ConnectHeartbeatResponse? heartbeat,
}) {
final result = create();
if (invocationEvent != null) result.invocationEvent = invocationEvent;
if (heartbeat != null) result.heartbeat = heartbeat;
return result;
}