toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final networkType = this.networkType;
final rdmaSubtype = this.rdmaSubtype;
final ullSubtype = this.ullSubtype;
final vpcSubtype = this.vpcSubtype;
return {
'networkType': ?networkType,
'rdmaSubtype': ?rdmaSubtype,
'ullSubtype': ?ullSubtype,
'vpcSubtype': ?vpcSubtype,
};
}