toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final airplaneModeState = this.airplaneModeState;
  final cellularTwoGState = this.cellularTwoGState;
  final minimumWifiSecurityLevel = this.minimumWifiSecurityLevel;
  final ultraWidebandState = this.ultraWidebandState;
  final userInitiatedAddEsimSettings = this.userInitiatedAddEsimSettings;
  final wifiState = this.wifiState;
  return {
    'airplaneModeState': ?airplaneModeState,
    'cellularTwoGState': ?cellularTwoGState,
    'minimumWifiSecurityLevel': ?minimumWifiSecurityLevel,
    'ultraWidebandState': ?ultraWidebandState,
    'userInitiatedAddEsimSettings': ?userInitiatedAddEsimSettings,
    'wifiState': ?wifiState,
  };
}