SetSessionConfigOptionResponse constructor

SetSessionConfigOptionResponse({
  1. required List<SessionConfigOption> configOptions,
  2. AcpJsonObject? meta,
})

Creates a SetSessionConfigOptionResponse value.

Implementation

SetSessionConfigOptionResponse({
  required List<SessionConfigOption> configOptions,
  this.meta,
}) : configOptions = List<SessionConfigOption>.unmodifiable(configOptions);