toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterName = this.clusterName;
final location = this.location;
final namespaceName = this.namespaceName;
final projectId = this.projectId;
final topLevelControllerName = this.topLevelControllerName;
final topLevelControllerType = this.topLevelControllerType;
return {
'clusterName': ?clusterName,
'location': ?location,
'namespaceName': ?namespaceName,
'projectId': ?projectId,
'topLevelControllerName': ?topLevelControllerName,
'topLevelControllerType': ?topLevelControllerType,
};
}