File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.5.1
2+
3+ * Fixed Dart 2 type errors.
4+
15## 0.5.0
26
37* ** Breaking change** . The BannerAd constructor now requires an AdSize
Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ class FirebaseAdMob {
466466
467467 Future <dynamic > _handleMethod (MethodCall call) {
468468 assert (call.arguments is Map );
469- final Map <String , dynamic > argumentsMap = call.arguments;
469+ final Map <dynamic , dynamic > argumentsMap = call.arguments;
470470 final RewardedVideoAdEvent rewardedEvent =
471471 _methodToRewardedVideoAdEvent[call.method];
472472 if (rewardedEvent != null ) {
Original file line number Diff line number Diff line change 11name : firebase_admob
22description : Firebase AdMob plugin for Flutter applications.
3- version : 0.5.0
3+ version : 0.5.1
44author : Flutter Team <flutter-dev@googlegroups.com>
55homepage : https://github.com/flutter/plugins/tree/master/packages/firebase_admob
66
You can’t perform that action at this time.
0 commit comments