toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final command = this.command;
  final commandExpiryTime = this.commandExpiryTime;
  final passphrase = this.passphrase;
  final peerClusterName = this.peerClusterName;
  final peerSvmName = this.peerSvmName;
  final peerVolumeName = this.peerVolumeName;
  final subnetIp = this.subnetIp;
  return {
    'command': ?command,
    'commandExpiryTime': ?commandExpiryTime,
    'passphrase': ?passphrase,
    'peerClusterName': ?peerClusterName,
    'peerSvmName': ?peerSvmName,
    'peerVolumeName': ?peerVolumeName,
    'subnetIp': ?subnetIp,
  };
}