EnclaveFrameAddRequest constructor
EnclaveFrameAddRequest({
- String? fileUuid,
- Int64? sequenceNumber,
- Int64? autoRefreshInterval,
- Int64? width,
- Int64? height,
Implementation
factory EnclaveFrameAddRequest({
$core.String? fileUuid,
$fixnum.Int64? sequenceNumber,
$fixnum.Int64? autoRefreshInterval,
$fixnum.Int64? width,
$fixnum.Int64? height,
}) {
final result = create();
if (fileUuid != null) result.fileUuid = fileUuid;
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;
}