toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bandwidthAllocation = this.bandwidthAllocation;
  final bandwidthUnmetered = this.bandwidthUnmetered;
  final faultResponse = this.faultResponse;
  return {
    'bandwidthAllocation': ?bandwidthAllocation,
    'bandwidthUnmetered': ?bandwidthUnmetered,
    'faultResponse': ?faultResponse,
  };
}