toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cacheConfig = this.cacheConfig;
final cacheState = this.cacheState;
final command = this.command;
final enableGlobalFileLock = this.enableGlobalFileLock;
final passphrase = this.passphrase;
final peerClusterName = this.peerClusterName;
final peerIpAddresses = this.peerIpAddresses;
final peerSvmName = this.peerSvmName;
final peerVolumeName = this.peerVolumeName;
final peeringCommandExpiryTime = this.peeringCommandExpiryTime;
final stateDetails = this.stateDetails;
return {
'cacheConfig': ?cacheConfig,
'cacheState': ?cacheState,
'command': ?command,
'enableGlobalFileLock': ?enableGlobalFileLock,
'passphrase': ?passphrase,
'peerClusterName': ?peerClusterName,
'peerIpAddresses': ?peerIpAddresses,
'peerSvmName': ?peerSvmName,
'peerVolumeName': ?peerVolumeName,
'peeringCommandExpiryTime': ?peeringCommandExpiryTime,
'stateDetails': ?stateDetails,
};
}