We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310ab72 commit 29ba5bcCopy full SHA for 29ba5bc
templates/flutter/lib/src/realtime_message.dart.twig
@@ -5,7 +5,7 @@ class RealtimeMessage {
5
final List<String> events;
6
final Map<String, dynamic> payload;
7
final List<String> channels;
8
- final int timestamp;
+ final String timestamp;
9
RealtimeMessage({
10
required this.events,
11
required this.payload,
@@ -17,7 +17,7 @@ class RealtimeMessage {
17
List<String>? events,
18
Map<String, dynamic>? payload,
19
List<String>? channels,
20
- int? timestamp,
+ String? timestamp,
21
}) {
22
return RealtimeMessage(
23
events: events ?? this.events,
0 commit comments