forked from Henry-Hiles/nexus
load replies at render time
This commit is contained in:
parent
c1968c8cc1
commit
62f8e675a4
9 changed files with 208 additions and 124 deletions
|
|
@ -18,6 +18,15 @@ abstract class GetEventRequest with _$GetEventRequest {
|
|||
"unredact": unredact,
|
||||
};
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) =>
|
||||
other.runtimeType == runtimeType &&
|
||||
other is GetEventRequest &&
|
||||
other.eventId == eventId;
|
||||
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType, eventId);
|
||||
|
||||
factory GetEventRequest.fromJson(Map<String, Object?> json) =>
|
||||
_$GetEventRequestFromJson(json);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue