encode method

Object encode()

Implementation

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