DeleteFileSystemWindowsResponse.fromJson constructor
Implementation
factory DeleteFileSystemWindowsResponse.fromJson(Map<String, dynamic> json) {
return DeleteFileSystemWindowsResponse(
finalBackupId: json['FinalBackupId'] as String?,
finalBackupTags: (json['FinalBackupTags'] as List?)
?.whereNotNull()
.map((e) => Tag.fromJson(e as Map<String, dynamic>))
.toList(),
);
}