toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final displayName = this.displayName;
  final flow = this.flow;
  final labels = this.labels;
  final name = this.name;
  final orderState = this.orderState;
  final provider = this.provider;
  final providerSite = this.providerSite;
  final sla = this.sla;
  final supportedBandwidths = this.supportedBandwidths;
  return {
    'description': ?description,
    'displayName': ?displayName,
    'flow': ?flow,
    'labels': ?labels,
    'name': ?name,
    'orderState': ?orderState,
    'provider': ?provider,
    'providerSite': ?providerSite,
    'sla': ?sla,
    'supportedBandwidths': ?supportedBandwidths,
  };
}