EnclaveFrameAddRequest constructor

EnclaveFrameAddRequest({
  1. String? fileUuid,
  2. Int64? sequenceNumber,
  3. Int64? autoRefreshInterval,
  4. Int64? width,
  5. 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;
}