toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conditions = this.conditions;
  final controlPlaneManagement = this.controlPlaneManagement;
  final dataPlaneManagement = this.dataPlaneManagement;
  return {
    'conditions': ?conditions,
    'controlPlaneManagement': ?controlPlaneManagement,
    'dataPlaneManagement': ?dataPlaneManagement,
  };
}