Skip to content

Commit 3f454b0

Browse files
change String? to String for UrlRequest
1 parent ab08a46 commit 3f454b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/chatbox.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ class MessageActionEvent {
5656
enum UrlNavigationAction { allow, deny }
5757

5858
class UrlNavigationRequest {
59-
final String? url;
59+
final String url;
6060

6161
UrlNavigationRequest(
62-
this.url
62+
this.url,
6363
);
6464
}
6565

0 commit comments

Comments
 (0)