StartSessionResponse constructor
- String? id,
- Duration? heartbeatWindow,
Implementation
factory StartSessionResponse({
$core.String? id,
$42.Duration? heartbeatWindow,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (heartbeatWindow != null) {
$result.heartbeatWindow = heartbeatWindow;
}
return $result;
}