RichContentResponse constructor
const
RichContentResponse({
- required List<
RichComponent> components, - @JsonKey.new(name: 'fallback_text') String? fallbackText,
Implementation
const factory RichContentResponse({
/// List of components to render
required List<RichComponent> components,
/// Fallback text for accessibility or error states
@JsonKey(name: 'fallback_text') String? fallbackText,
}) = _RichContentResponse;