Skip to content

Commit

Permalink
pubdev score fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shivanshtalwar committed Nov 3, 2022
1 parent a032088 commit 72b8b66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/interfaces/video_room/events/video_room_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class VideoRoomEvent {
room = room;
}

VideoRoomEvent() {}
VideoRoomEvent();

@override
bool operator ==(Object other) =>
Expand All @@ -30,6 +30,7 @@ class VideoRoomEvent {
' room: $room,' +
'}';
}

Map<String, dynamic> toMap() {
return {
'videoroom': this.videoroom,
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: janus_client
description: A plugin that allows the flutter app to communicate with a Janus server using different transport mechanisms, such as WebSocket and HTTP(rest). It features a developer-friendly api to interact with various WebRTC Janus Plugins. Hence, it can be considered as a swiss-knife for WebRTC solutions.
description: A feature rich Janus Webrtc package
version: 2.2.9
homepage: https://github.com/shivanshtalwar0/flutter_janus_client

Expand All @@ -12,7 +12,7 @@ dependencies:
sdk: flutter
flutter:
sdk: flutter
flutter_webrtc: ^0.9.11
flutter_webrtc: ^0.9.12
path_provider: ^2.0.11
http: ^0.13.4
web_socket_channel: ^2.2.0
Expand Down

0 comments on commit 72b8b66

Please sign in to comment.