File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,19 +66,19 @@ class MobileUnityWidgetController extends UnityWidgetController {
66
66
});
67
67
}
68
68
69
- if (_unityWidgetState .widget.onUnityAttached != null ) {
69
+ if (unityWidgetState .widget.onUnityAttached != null ) {
70
70
_onUnityAttachedSub = UnityWidgetPlatform .instance
71
71
.onUnityAttached (unityId: unityId)
72
72
.listen ((_) {
73
- _unityWidgetState .widget.onUnityAttached !();
73
+ unityWidgetState .widget.onUnityAttached !();
74
74
});
75
75
}
76
76
77
- if (_unityWidgetState .widget.onUnityDetached != null ) {
77
+ if (unityWidgetState .widget.onUnityDetached != null ) {
78
78
_onUnityDetachedSub = UnityWidgetPlatform .instance
79
79
.onUnityDetached (unityId: unityId)
80
80
.listen ((_) {
81
- _unityWidgetState .widget.onUnityDetached !();
81
+ unityWidgetState .widget.onUnityDetached !();
82
82
});
83
83
}
84
84
}
You can’t perform that action at this time.
0 commit comments