encode method
Implementation
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['wifi'] = wifi;
pigeonMap['wifi_tether'] = wifi_tether;
pigeonMap['wifiboth'] = wifiboth;
pigeonMap['private'] = private;
pigeonMap['cellular'] = cellular;
pigeonMap['Usb'] = Usb;
pigeonMap['Bluethooth'] = Bluethooth;
pigeonMap['IsWifiConnected'] = IsWifiConnected;
pigeonMap['IsHotspotEnabled'] = IsHotspotEnabled;
pigeonMap['IsWifiEnabled'] = IsWifiEnabled;
return pigeonMap;
}