EnclaveFrameUpdateRequest constructor

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