toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final binauthzState = this.binauthzState;
  final clusterName = this.clusterName;
  final configSyncState = this.configSyncState;
  final hierarchyControllerState = this.hierarchyControllerState;
  final kubernetesApiServerVersion = this.kubernetesApiServerVersion;
  final membershipSpec = this.membershipSpec;
  final operatorState = this.operatorState;
  final policyControllerState = this.policyControllerState;
  return {
    'binauthzState': ?binauthzState,
    'clusterName': ?clusterName,
    'configSyncState': ?configSyncState,
    'hierarchyControllerState': ?hierarchyControllerState,
    'kubernetesApiServerVersion': ?kubernetesApiServerVersion,
    'membershipSpec': ?membershipSpec,
    'operatorState': ?operatorState,
    'policyControllerState': ?policyControllerState,
  };
}