elicitationId property

String get elicitationId

The identifier of the completed elicitation.

Implementation

String get elicitationId {
  final id = _value[Keys.elicitationId] as String?;
  if (id == null) {
    throw ArgumentError(
      'Missing elicitationId in $ElicitationCompleteNotification',
    );
  }
  return id;
}