File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class LinkElement extends Element {
32
32
LinkElement ([BindingContext ? context]) : super (context, defaultStyle: _defaultStyle);
33
33
34
34
Uri ? _resolvedHyperlink;
35
- Map <String , bool > _stylesheetLoaded = {};
35
+ final Map <String , bool > _stylesheetLoaded = {};
36
36
37
37
// Bindings.
38
38
@override
Original file line number Diff line number Diff line change @@ -1034,12 +1034,12 @@ class KrakenController {
1034
1034
return completer.future;
1035
1035
}
1036
1036
1037
- Uri ? get _uri {
1037
+ String ? get _url {
1038
1038
HistoryModule historyModule = module.moduleManager.getModule <HistoryModule >('History' )! ;
1039
- return historyModule.stackTop? .resolvedUri ;
1039
+ return historyModule.stackTop? .url ;
1040
1040
}
1041
1041
1042
- String get url => _uri ? . toString () ?? '' ;
1042
+ String get url => _url ?? '' ;
1043
1043
1044
1044
_addHistory (KrakenBundle bundle) {
1045
1045
HistoryModule historyModule =
You can’t perform that action at this time.
0 commit comments