message property

String get message

A message to display to the user when collecting the response.

Implementation

String get message {
  final message = _value['message'] as String?;
  if (message == null) {
    throw ArgumentError('Missing required message field in $ElicitRequest');
  }
  return message;
}