toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final alwaysOnSetting = this.alwaysOnSetting;
  final apn = this.apn;
  final apnTypes = this.apnTypes;
  final authType = this.authType;
  final carrierId = this.carrierId;
  final displayName = this.displayName;
  final mmsProxyAddress = this.mmsProxyAddress;
  final mmsProxyPort = this.mmsProxyPort;
  final mmsc = this.mmsc;
  final mtuV4 = this.mtuV4;
  final mtuV6 = this.mtuV6;
  final mvnoType = this.mvnoType;
  final networkTypes = this.networkTypes;
  final numericOperatorId = this.numericOperatorId;
  final password = this.password;
  final protocol = this.protocol;
  final proxyAddress = this.proxyAddress;
  final proxyPort = this.proxyPort;
  final roamingProtocol = this.roamingProtocol;
  final username = this.username;
  return {
    'alwaysOnSetting': ?alwaysOnSetting,
    'apn': ?apn,
    'apnTypes': ?apnTypes,
    'authType': ?authType,
    'carrierId': ?carrierId,
    'displayName': ?displayName,
    'mmsProxyAddress': ?mmsProxyAddress,
    'mmsProxyPort': ?mmsProxyPort,
    'mmsc': ?mmsc,
    'mtuV4': ?mtuV4,
    'mtuV6': ?mtuV6,
    'mvnoType': ?mvnoType,
    'networkTypes': ?networkTypes,
    'numericOperatorId': ?numericOperatorId,
    'password': ?password,
    'protocol': ?protocol,
    'proxyAddress': ?proxyAddress,
    'proxyPort': ?proxyPort,
    'roamingProtocol': ?roamingProtocol,
    'username': ?username,
  };
}