content property

Map<String, Object?>? get content

The content of the response, if the user accepted the request.

Must be null if the user didn't accept the request.

The content must conform to the ElicitRequest's requestedSchema.

Implementation

Map<String, Object?>? get content =>
    _value['content'] as Map<String, Object?>?;