Skip to content

Commit ac1f1d4

Browse files
Update to string
1 parent 73accf5 commit ac1f1d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/messaging/page_result_mediator.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import 'package:flutter_boost/support/logger.dart';
2525
import 'package:flutter_boost/AIOService/NavigationService/service/NavigationService.dart';
2626

27-
typedef void PageResultHandler(String key , Map<dynamic,dynamic> result);
27+
typedef void PageResultHandler(String key , Map<String,dynamic> result);
2828
typedef VoidCallback = void Function();
2929

3030
class PageResultMediator{
@@ -42,7 +42,7 @@ class PageResultMediator{
4242
}
4343

4444
Map<String,PageResultHandler> _handlers = Map();
45-
void onPageResult(String key , Map<dynamic,dynamic> resultData, Map params){
45+
void onPageResult(String key , Map<String,dynamic> resultData, Map params){
4646

4747
if(key == null) return;
4848

@@ -78,4 +78,4 @@ class PageResultMediator{
7878
};
7979
}
8080

81-
}
81+
}

0 commit comments

Comments
 (0)