ResumeSessionResponse constructor
ResumeSessionResponse({
- SessionModeState? modes,
- List<
SessionConfigOption> ? configOptions, - AcpJsonMap? meta,
Implementation
ResumeSessionResponse({
this.modes,
List<SessionConfigOption>? configOptions,
AcpJsonMap? meta,
}) : configOptions = configOptions == null
? null
: List.unmodifiable(configOptions!),
meta = meta == null ? null : deepFreezeAcpJsonMap(meta!);