🐛 Dozens of bug fixes
This commit is contained in:
@@ -10,6 +10,7 @@ _WebSocketPacket _$WebSocketPacketFromJson(Map<String, dynamic> json) =>
|
||||
_WebSocketPacket(
|
||||
type: json['type'] as String,
|
||||
data: json['data'] as Map<String, dynamic>?,
|
||||
endpoint: json['endpoint'] as String?,
|
||||
errorMessage: json['error_message'] as String?,
|
||||
);
|
||||
|
||||
@@ -17,5 +18,6 @@ Map<String, dynamic> _$WebSocketPacketToJson(_WebSocketPacket instance) =>
|
||||
<String, dynamic>{
|
||||
'type': instance.type,
|
||||
'data': instance.data,
|
||||
'endpoint': instance.endpoint,
|
||||
'error_message': instance.errorMessage,
|
||||
};
|
||||
|
Reference in New Issue
Block a user