Skip to content

Commit 0bc12c3

Browse files
committed
WIP
1 parent 65a2232 commit 0bc12c3

File tree

5 files changed

+0
-8
lines changed

5 files changed

+0
-8
lines changed

assets/env/develop.json

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@
1717
"one_signal_config": null,
1818
"pusher_config": null,
1919
"show_debug_panel": true,
20-
"method_channel_map": {},
2120
"debug_panel_color": 3422552064
2221
}

assets/env/production.json

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@
1717
"one_signal_config": null,
1818
"pusher_config": null,
1919
"show_debug_panel": false,
20-
"method_channel_map": {},
2120
"debug_panel_color": 3422552064
2221
}

assets/env/staging.json

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@
1717
"one_signal_config": null,
1818
"pusher_config": null,
1919
"show_debug_panel": true,
20-
"method_channel_map": {},
2120
"debug_panel_color": 3422552064
2221
}

lib/vaahextendflutter/env/env.dart

-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ class EnvironmentConfig {
6262
this.oneSignalConfig,
6363
this.pusherConfig,
6464
required this.showDebugPanel,
65-
required this.methodChannelMap,
6665
required this.debugPanelColor,
6766
});
6867

@@ -83,7 +82,6 @@ class EnvironmentConfig {
8382
final OneSignalConfig? oneSignalConfig;
8483
final PusherConfig? pusherConfig;
8584
final bool showDebugPanel;
86-
final Map<String, dynamic> methodChannelMap;
8785
@JsonKey(fromJson: _colorFromJson, toJson: _colorToJson)
8886
final Color debugPanelColor;
8987

@@ -125,7 +123,6 @@ class EnvironmentConfig {
125123
pushNotificationsServiceType: PushNotificationsServiceType.none,
126124
internalNotificationsServiceType: InternalNotificationsServiceType.none,
127125
showDebugPanel: true,
128-
methodChannelMap: {}, // Map native method names to their corresponding channels here
129126
debugPanelColor: Colors.black.withOpacity(0.8),
130127
);
131128
}

lib/vaahextendflutter/env/env.g.dart

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)