SetSessionConfigOptionRequestBoolean.fromMap constructor
Implementation
factory SetSessionConfigOptionRequestBoolean.fromMap(
Map<Object?, Object?> value,
) {
final decoded = SetSessionConfigOptionRequest.fromMap(value);
if (decoded is! SetSessionConfigOptionRequestBoolean) {
throw const AcpWireDecodeException(
'Expected SetSessionConfigOptionRequestBoolean.',
);
}
return decoded;
}