ChangelogLinkedRequest class

Reference to a completed feature request linked to a changelog release note.

Displayed as a pill or star badge within release notes to celebrate shipped user requests.

Example

final linked = ChangelogLinkedRequest(
  id: 'fr_123',
  title: 'Support custom webhook notifications',
);

Constructors

ChangelogLinkedRequest({required String id, required String title})
Creates a ChangelogLinkedRequest record.
const
ChangelogLinkedRequest.fromJson(Map<String, dynamic> json)
Deserializes ChangelogLinkedRequest from a JSON map.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
id String
Unique database ID of the linked feature request.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String
Title of the linked feature request.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited