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