toJson method
Implementation
Map<String, dynamic> toJson() {
final snapshotIdentifier = this.snapshotIdentifier;
final snapshotClusterIdentifier = this.snapshotClusterIdentifier;
return {
'SnapshotIdentifier': snapshotIdentifier,
if (snapshotClusterIdentifier != null)
'SnapshotClusterIdentifier': snapshotClusterIdentifier,
};
}