EnclaveFrameUpdateRequest constructor
EnclaveFrameUpdateRequest({
- String? uuid,
- Int64? sequenceNumber,
- Int64? autoRefreshInterval,
- Int64? width,
- Int64? height,
Implementation
factory EnclaveFrameUpdateRequest({
$core.String? uuid,
$fixnum.Int64? sequenceNumber,
$fixnum.Int64? autoRefreshInterval,
$fixnum.Int64? width,
$fixnum.Int64? height,
}) {
final result = create();
if (uuid != null) result.uuid = uuid;
if (sequenceNumber != null) result.sequenceNumber = sequenceNumber;
if (autoRefreshInterval != null)
result.autoRefreshInterval = autoRefreshInterval;
if (width != null) result.width = width;
if (height != null) result.height = height;
return result;
}