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