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